diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-19 02:05:58 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-19 02:05:58 +0300 |
commit | fd6e288154bd9c8813d662975420cd82668eb13e (patch) | |
tree | b3c3389e9541e3b01725a600439eeb05d297148d /_includes/common/header.html | |
parent | Makefile: add view (diff) | |
download | jekyll-theme-fd6e288154bd9c8813d662975420cd82668eb13e.tar.gz jekyll-theme-fd6e288154bd9c8813d662975420cd82668eb13e.zip |
header: support custom <link> elements
Diffstat (limited to '')
-rw-r--r-- | _includes/common/header.html | 4 |
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 %} |