aboutsummaryrefslogtreecommitdiffstats
path: root/src/layouts/post.njk
blob: b2eb5e59b90694b2bc114a5d7576a6316c253eb7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
---
layout: base.njk
tags:
	- posts
---
<article>
	<h1>{{ title }}</h1>
	<small>
	<time datetime="{{ date | datefmt }}">{{ date | datefmt }}</time> - {{ metadata.author.name }}
	</small>
	{{ content | safe }}
</article>