aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/_includes
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-04-10 02:19:31 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-04-10 02:19:31 +0300
commitbf361a5d763614873a605ae8f6b8d4c26b30de24 (patch)
tree5e3e93d6959c9406b612b5dc53d000bb107e2be1 /_includes
parentworkflows/jekyll: merge jobs, Bundler caching (diff)
downloadjekyll-theme-bf361a5d763614873a605ae8f6b8d4c26b30de24.tar.gz
jekyll-theme-bf361a5d763614873a605ae8f6b8d4c26b30de24.zip
header: bring back custom_css
It was accidentally removed in 823883f.
Diffstat (limited to '_includes')
-rw-r--r--_includes/common/header.html6
1 files changed, 6 insertions, 0 deletions
diff --git a/_includes/common/header.html b/_includes/common/header.html
index 4020667..bff0657 100644
--- a/_includes/common/header.html
+++ b/_includes/common/header.html
@@ -15,6 +15,12 @@
<link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url }}">
+ {% if page.custom_css %}
+ {% for css in page.custom_css %}
+ <link rel="stylesheet" href="{{ '/assets/css/' | relative_url }}{{ css }}"/>
+ {% endfor %}
+ {% endif %}
+
{% include common/ie_compat.html %}
{% include common/mathjax.html %}
</head>