aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/_includes/common/header.html
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2022-03-19 02:05:58 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2022-03-19 02:05:58 +0300
commitfd6e288154bd9c8813d662975420cd82668eb13e (patch)
treeb3c3389e9541e3b01725a600439eeb05d297148d /_includes/common/header.html
parentMakefile: add view (diff)
downloadjekyll-theme-fd6e288154bd9c8813d662975420cd82668eb13e.tar.gz
jekyll-theme-fd6e288154bd9c8813d662975420cd82668eb13e.zip
header: support custom <link> elements
Diffstat (limited to '_includes/common/header.html')
-rw-r--r--_includes/common/header.html4
1 files changed, 4 insertions, 0 deletions
diff --git a/_includes/common/header.html b/_includes/common/header.html
index 8546fb5..6798ec1 100644
--- a/_includes/common/header.html
+++ b/_includes/common/header.html
@@ -59,6 +59,10 @@
{% endfor %}
{% endif %}
+ {% for link in site.settings.links %}
+ <link{% for attr in link %} {{ attr[0] }}="{{ attr[1] }}"{% endfor %}>
+ {% endfor %}
+
{% if site.settings.ga_tag %}
{% include common/ga.html ga_tag=site.settings.ga_tag %}
{% endif %}