gists/_layouts/default.html
2021-08-05 09:55:05 +02:00

32 lines
962 B
HTML

<!DOCTYPE html>
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
{%- include head.html -%}
<body>
{% unless page.isTop %}
<span>
<a href="..">Go back</a> | {{ page.dir }}
</span>
{% endunless %}
<div class="content">
<main>
{{ content }}
</main>
<aside>
{% include toc.html html=content %}
</aside>
</div>
<footer>
{% if page.footer %}
{{page.footer}}
{% else %}
<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">CC BY-NC-SA</a> (Atribution, non-commercial use and usage of same license required) unless otherwise noted. <br>
<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/deed.cs">CC BY-NC-SA</a> (Atribuce, nekomerční použití a použití stejné license vyžadováno) není-li řečeno jinak. <br>
{% endif %}
</footer>
</body>
</html>