diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-03-08 03:31:04 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-03-08 03:31:04 +0300 |
commit | 924d89666fd0427437e6ae5b42e46699cfe75521 (patch) | |
tree | 9bf5821bbb6e6bb74cb944e88b77577f9f279628 /_includes | |
parent | _includes: merge links.html to navbar.html (diff) | |
download | sorting-algorithms-924d89666fd0427437e6ae5b42e46699cfe75521.tar.gz sorting-algorithms-924d89666fd0427437e6ae5b42e46699cfe75521.zip |
plots: get rid of JavaScript
Diffstat (limited to '_includes')
-rw-r--r-- | _includes/header.html | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/_includes/header.html b/_includes/header.html index 060becb..66ed5fc 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -11,9 +11,14 @@ <link rel="stylesheet" href="{{ site.baseurl }}/css/footer.css"> <link rel="stylesheet" href="{{ site.baseurl }}/css/misc.css"> - <link rel="stylesheet" href="{{ site.baseurl }}/css/plots.css"> <link rel="stylesheet" href="{{ site.baseurl }}/css/syntax.css"> + {% if page.custom_css %} + {% for css in page.custom_css %} + <link rel="stylesheet" href="{{ site.baseurl }}/css/{{ css }}"/> + {% endfor %} + {% endif %} + {% include ie_compat.html %} </head> <body> |