fixed favicon error

This commit is contained in:
vedatakd 2021-02-12 10:20:06 +03:00
parent 620855e436
commit 8ec0b7ba9c

View File

@ -1,5 +1,5 @@
<!-- VueJS Requirements --> <!-- VueJS Requirements -->
<meta name="csrf-token" content="{{ csrf_token() }}" /> <meta name="csrf-token" content="{{ csrf_token() }}"/>
<!-- To the Future! --> <!-- To the Future! -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
@ -7,7 +7,10 @@
{% include "visiosoft.theme.base::partials/metatags" %} {% include "visiosoft.theme.base::partials/metatags" %}
<!-- Favicon --> <!-- Favicon -->
{{ favicons(file(setting_value('visiosoft.module.advs::favicon')).url) }} {% set favicon = file(setting_value('visiosoft.module.advs::favicon')).url %}
{% if favicon %}
{{ favicons(favicon) }}
{% endif %}
{# Base Theme Components #} {# Base Theme Components #}
{{ asset_add("theme.css", "visiosoft.theme.base::css/base.css") }} {{ asset_add("theme.css", "visiosoft.theme.base::css/base.css") }}