diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-10 02:19:31 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-10 02:19:31 +0300 |
commit | bf361a5d763614873a605ae8f6b8d4c26b30de24 (patch) | |
tree | 5e3e93d6959c9406b612b5dc53d000bb107e2be1 /_includes/common/header.html | |
parent | workflows/jekyll: merge jobs, Bundler caching (diff) | |
download | jekyll-theme-bf361a5d763614873a605ae8f6b8d4c26b30de24.tar.gz jekyll-theme-bf361a5d763614873a605ae8f6b8d4c26b30de24.zip |
header: bring back custom_css
It was accidentally removed in 823883f.
Diffstat (limited to '_includes/common/header.html')
-rw-r--r-- | _includes/common/header.html | 6 |
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> |