diff options
author | sijanec <sijanecantonluka@gmail.com> | 2020-12-01 23:50:20 +0100 |
---|---|---|
committer | sijanec <sijanecantonluka@gmail.com> | 2020-12-01 23:50:20 +0100 |
commit | 5fdb8d8f43e15b9581e8320153eb2e8c24cedac8 (patch) | |
tree | 05f9192f178fd698c0a62c9582b0c5d5592f6d67 /_layouts/default.html | |
parent | dodal https predlog - hostname fix (diff) | |
download | sijanec.eu-5fdb8d8f43e15b9581e8320153eb2e8c24cedac8.tar sijanec.eu-5fdb8d8f43e15b9581e8320153eb2e8c24cedac8.tar.gz sijanec.eu-5fdb8d8f43e15b9581e8320153eb2e8c24cedac8.tar.bz2 sijanec.eu-5fdb8d8f43e15b9581e8320153eb2e8c24cedac8.tar.lz sijanec.eu-5fdb8d8f43e15b9581e8320153eb2e8c24cedac8.tar.xz sijanec.eu-5fdb8d8f43e15b9581e8320153eb2e8c24cedac8.tar.zst sijanec.eu-5fdb8d8f43e15b9581e8320153eb2e8c24cedac8.zip |
Diffstat (limited to '_layouts/default.html')
-rw-r--r-- | _layouts/default.html | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/_layouts/default.html b/_layouts/default.html index e85e731..8611085 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -5,7 +5,11 @@ <title> {{ page.title }} :: {{ site.name }} </title> - <link rel=stylesheet href=/assets/css/styles.css /> + <!-- <link rel=stylesheet href=/assets/css/styles.css /> --> + {% capture mainscss %} + {% include main.scss %} + {% endcapture %} + <style>{{ mainscss | scssify }}</style> <link rel=alternate hreflang=sl type=application/rss+xml href=/feed.xml /> <meta name=viewport content="width=device-width,initial-scale=1.0" /> <link rel="shortcut icon" type=image/x-icon href=/favicon.ico /> @@ -19,6 +23,7 @@ {% include navigation.html %} {{ content }} {% include footer.html %} - <script src=/assets/js/main.js ></script> + <!-- <script src=/assets/js/main.js ></script> --> + <script>{% include main.js %}</script> </body> </html> |