brokenco.de/_layouts/post.html

39 lines
859 B
HTML
Raw Normal View History

---
layout: default
---
<style type="text/css">
.post-tags {
margin-bottom: 0.5rem;
}
</style>
<header class="masthead">
<h1 class="masthead-title--small">
<a href="{{ site.baseurl }}/">{{ site.name }}</a>
</h1>
</header>
2018-08-05 22:27:38 +00:00
2018-08-16 17:33:46 +00:00
<main class="content">
<div class="post">
<h1 class="post-title">{{ page.title }}</h1>
<div class="post-tags">
{% for tag in page.tags %}
2019-05-26 18:23:08 +00:00
<span class="post-tag">
<a href="/tag/{{ tag }}.html">{{ tag }}</a>
2018-08-16 17:33:46 +00:00
&nbsp;
</span>
{% endfor %}
</div>
<div class="post-date">
2019-05-26 18:23:08 +00:00
<em>
<time>{{ page.date | date_to_string }}</time>
</em>
2018-08-16 17:33:46 +00:00
</div>
{{ content }}
</div>
</main>
<footer>
<a href="https://github.com/rtyler/brokenco.de/edit/master/{{page.path}}">Improve this page</a>
</footer>