mirror of
https://github.com/LinkStackOrg/LinkStack.git
synced 2024-12-25 09:10:42 +01:00
Update sidebar.blade.php
Adds the ability to insert code snippets into the head and body element laid out by the sidebar with blade by including: @push('stylesheets') <!-- your code --> @endpush @push('scripts') <!-- your code --> @endpush
This commit is contained in:
parent
5586a17b51
commit
4eec538834
@ -85,6 +85,8 @@ if ($url1sb->successful() or $url2sb->successful()) {
|
||||
@else
|
||||
<link rel="icon" type="image/svg+xml" href="{{ asset('littlelink/images/logo.svg') }}">
|
||||
@endif
|
||||
|
||||
@stack('stylesheets')
|
||||
</head>
|
||||
<body>
|
||||
|
||||
@ -314,5 +316,7 @@ if(localStorage.getItem("firstTime")==null){
|
||||
<script src="{{ asset('/studio/js/popper.js') }}"></script>
|
||||
<script src="{{ asset('/studio/js/bootstrap.min.js') }}"></script>
|
||||
<script src="{{ asset('/studio/js/main-dashboard.js') }}"></script>
|
||||
|
||||
@stack('scripts')
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
Reference in New Issue
Block a user