mirror of
https://github.com/netz39/www.netz39.de.git
synced 2025-01-18 20:10:12 +01:00
19 lines
645 B
HTML
19 lines
645 B
HTML
<!DOCTYPE html>
|
|
<!--
|
|
Type on Strap jekyll theme v2.4.9
|
|
Theme free for personal and commercial use under the MIT license
|
|
https://github.com/sylhare/Type-on-Strap/blob/master/LICENSE
|
|
-->
|
|
<html lang="en">
|
|
{% capture _head %}{% include default/head.liquid %}{% endcapture %}
|
|
{{ _head | split: " " | join: " "}}
|
|
<body>
|
|
{% capture _navbar %}{% include default/navbar.liquid %}{% endcapture %}
|
|
{{ _navbar | split: " " | join: " "}}
|
|
<div class="content">
|
|
{{ content }}
|
|
</div>
|
|
{% capture _footer %}{% include default/footer.liquid %}{% endcapture %}
|
|
{{ _footer | split: " " | join: " "}}
|
|
</body>
|
|
</html>
|