51 lines
1.5 KiB
HTML
51 lines
1.5 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 />
|
||
<blockquote>
|
||
<p>"Man makes a clever face and talks about being lord on Earth.
|
||
And at the same time he doesn’t even know where to begin with his own body:
|
||
he watches
|
||
sports on television and defends himself saying that everyone else does it too."
|
||
</p>
|
||
<p>- <a href="http://antaiji.org/archives/eng/kodo-sawaki-to-you.shtml">Homeless Kodo
|
||
</a>
|
||
</p>
|
||
</blockquote>
|
||
<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>
|