input-for-jekyll/_layouts/default.html
Tony Chen 3cd581a697 Commit into repository
Maybe I want to use the Markdown files in ./_posts
for use in another Static Site Generator.
2020-08-05 02:32:09 +00:00

51 lines
1.5 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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 doesnt 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 %}
&nbsp;&nbsp;&nbsp;
<small>| <a href="{{ page[1] | prepend:site.baseurl }}">{{ page[0] }}
</a>
</small>
<br />
{% endfor %}
</header>
<main>
{{ content }}
</main>
<footer class="footer">
<small>
&copy; <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>