mirror of
https://github.com/danielbrendel/hortusfox-web.git
synced 2026-02-20 21:38:53 -06:00
20 lines
614 B
PHP
20 lines
614 B
PHP
<meta charset="utf-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<link rel="icon" type="image/png" href="{{ asset('logo.png') }}"/>
|
|
<link rel="stylesheet" type="text/css" href="{{ asset('css/bulma.css') }}"/>
|
|
|
|
@if ((ThemeModule::ready()) && (ThemeModule::data()->include))
|
|
<link rel="stylesheet" type="text/css" href="{{ ThemeModule::data()->include }}"/>
|
|
@endif
|
|
|
|
@if (env('APP_DEBUG'))
|
|
<script src="{{ asset('js/vue.js') }}"></script>
|
|
@else
|
|
<script src="{{ asset('js/vue.min.js') }}"></script>
|
|
@endif
|
|
|
|
@if (is_string(app('custom_head_code')))
|
|
{!! app('custom_head_code') !!}
|
|
@endif
|