Skip to content
Snippets Groups Projects
Commit 71f2645a authored by Dominik Hebeler's avatar Dominik Hebeler
Browse files

possibility to add css files for individual pages

parent b9026298
No related branches found
No related tags found
3 merge requests!1712Development,!1705Development,!1688Resolve "dynamic instructions for adding metager as default search engine"
......@@ -36,12 +36,10 @@
<script src="{{ mix('js/utility.js') }}"></script>
@if (isset($css))
@if(is_array($css))
@foreach($css as $el)
<link href="/css/{{ $el }}" rel="stylesheet" />
@foreach($css as $cssFile)
<link href="{{ $cssFile }}" rel="stylesheet" />
@endforeach
@else
<link href="/css/{{ $css }}" rel="stylesheet" />
@endif
@endif
</head>
<body>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment