40 lines
1.1 KiB
HTML
40 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
{% include head.html %}
|
|
|
|
<body>
|
|
|
|
<div class="container content">
|
|
<header class="masthead">
|
|
<h3 class="masthead-title">
|
|
<a href="{{ site.baseurl }}/" title="Home">{{ site.title }}</a>
|
|
<small>{{ site.tagline }}</small>
|
|
</h3>
|
|
<br />
|
|
{% for page in site.pages_list %}
|
|
|
|
<small>| <a href="{{ page[1] | prepend:site.baseurl }}">{{ page[0] }}
|
|
</a>
|
|
</small>
|
|
<br />
|
|
{% endfor %}
|
|
</header>
|
|
|
|
<main>
|
|
{{ content }}
|
|
</main>
|
|
|
|
<footer class="footer">
|
|
<small>
|
|
© <a href="{{ site.author.url }}">{{ site.author.name }}</a>, <time datetime="{{ site.time | date_to_xmlschema }}">{{ site.time | date: '%Y' }}</time>. All rights reserved.
|
|
Built on <a href="https://jekyllrb.com/">Jekyll</a>, using the theme
|
|
<a href="http://getpoole.com/">Poole</a>.
|
|
Hosted on <a href="http://tilde.town/">tilde.town</a>
|
|
</small>
|
|
</footer>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|