brokenco.de/_layouts/post.html

28 lines
584 B
HTML
Raw Normal View History

---
layout: default
---
<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
<div class="content post">
<h1 class="post-title">{{ page.title }}</h1>
2017-01-08 22:41:45 +00:00
<div class="post-tags">
{% for tag in page.tags %}
<span>
2018-08-05 22:27:38 +00:00
<strong>
2017-01-08 22:41:45 +00:00
<a href="/tag/{{ tag }}.html">{{ tag }}</a>
2018-08-05 22:27:38 +00:00
</strong>
&nbsp;
2017-01-08 22:41:45 +00:00
</span>
{% endfor %}
</div>
<div class="post-date">
<time>{{ page.date | date_to_string }}</time>
</div>
{{ content }}
</div>