aboutsummaryrefslogtreecommitdiffstats
path: root/src/layouts/post.njk
blob: 70e3be814f10b1089d3674029616de3b9202b960 (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>