mirror of
https://github.com/nairobilug/pelican-alchemy.git
synced 2024-12-30 12:15:06 +01:00
Merge branch 'extra-favicon' of github.com:raymondwanyoike/pelican-alchemy into raymondwanyoike-extra-favicon
* 'extra-favicon' of github.com:raymondwanyoike/pelican-alchemy: Add EXTRA_FAVICON option
This commit is contained in:
commit
479f12e827
3 changed files with 12 additions and 0 deletions
|
|
@ -9,6 +9,7 @@
|
|||
|
||||
<title>{% block title %}{{ SITE_SUBTEXT }}{% endblock title %}</title>
|
||||
|
||||
{% include "include/favicon.html" %}
|
||||
{% include "include/feeds.html" %}
|
||||
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/style.css">
|
||||
|
||||
|
|
|
|||
7
alchemy/templates/include/favicon.html
Normal file
7
alchemy/templates/include/favicon.html
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{% if EXTRA_FAVICON %}
|
||||
<link rel="icon" type="image/png" href="/favicon-196x196.png" sizes="196x196">
|
||||
<link rel="icon" type="image/png" href="/favicon-160x160.png" sizes="160x160">
|
||||
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
|
||||
<link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16">
|
||||
<link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32">
|
||||
{% endif %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue