add: favicon

This commit is contained in:
Tobias Reisinger 2020-01-31 23:58:05 +01:00
parent d7c16e9ed2
commit 95dceb06d1
14 changed files with 71 additions and 0 deletions

View file

@ -11,6 +11,15 @@
{% include 'partials/metadata.html.twig' %}
<link rel="icon" type="image/png" href="{{ url('theme://images/logo.png') }}" />
<link rel="apple-touch-icon" sizes="180x180" href="{{ url('theme://images/icons/apple-touch-icon.png') }}">
<link rel="icon" type="image/png" sizes="32x32" href="{{ url('theme://images/icons/favicon-32x32.png') }}">
<link rel="icon" type="image/png" sizes="16x16" href="{{ url('theme://images/icons/favicon-16x16.png') }}">
<link rel="manifest" href="{{ url('theme://images/icons/site.webmanifest') }}">
<link rel="mask-icon" href="{{ url('theme://images/icons/safari-pinned-tab.svg" color="#00a300') }}">
<link rel="shortcut icon" href="{{ url('theme://images/icons/favicon.ico') }}">
<meta name="msapplication-TileColor" content="#00a300">
<meta name="msapplication-config" content="{{ url('theme://images/icons/browserconfig.xml') }}">
<meta name="theme-color" content="#ffffff">
<link rel="canonical" href="{{ page.url(true, true) }}" />
{% endblock head %}