Merge pull request #948 from openclassify/vedatakdogan

fixed favicon error
This commit is contained in:
Dia Shalabi 2021-02-12 11:32:12 +03:00 committed by GitHub
commit 4221b04277
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,5 @@
<!-- VueJS Requirements -->
<meta name="csrf-token" content="{{ csrf_token() }}" />
<meta name="csrf-token" content="{{ csrf_token() }}"/>
<!-- To the Future! -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
@ -7,7 +7,10 @@
{% include "visiosoft.theme.base::partials/metatags" %}
<!-- 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 #}
{{ asset_add("theme.css", "visiosoft.theme.base::css/base.css") }}