mirror of
https://github.com/LinkStackOrg/LinkStack.git
synced 2024-12-25 17:12:28 +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
|
@else
|
||||||
<link rel="icon" type="image/svg+xml" href="{{ asset('littlelink/images/logo.svg') }}">
|
<link rel="icon" type="image/svg+xml" href="{{ asset('littlelink/images/logo.svg') }}">
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
|
@stack('stylesheets')
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
@ -314,5 +316,7 @@ if(localStorage.getItem("firstTime")==null){
|
|||||||
<script src="{{ asset('/studio/js/popper.js') }}"></script>
|
<script src="{{ asset('/studio/js/popper.js') }}"></script>
|
||||||
<script src="{{ asset('/studio/js/bootstrap.min.js') }}"></script>
|
<script src="{{ asset('/studio/js/bootstrap.min.js') }}"></script>
|
||||||
<script src="{{ asset('/studio/js/main-dashboard.js') }}"></script>
|
<script src="{{ asset('/studio/js/main-dashboard.js') }}"></script>
|
||||||
|
|
||||||
|
@stack('scripts')
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
Loading…
Reference in New Issue
Block a user