aboutsummaryrefslogtreecommitdiffstats
path: root/includes/post.html
blob: 040e7ce0fe5f4c52cf0cfbb209df11faee6f9c23 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---json
{
"layout": "base"
}
---
<article itemscope :itemtype="schema('BlogPosting')">
	<h1 @text="title"></h1>
	<small>
		<time :datetime="htmlDateString(page.date)" itemprop="datePublished" @text="readableDate(page.date)"></time>
		- <span itemprop="author" itemscope :itemtype="schema('Person')">
			<a :href="metadata.author.url" rel="author" itemprop="url">
				<span itemprop="name" @text="metadata.author.name"></span>
			</a>
		</span>
	</small>
	<p><small itemprop="abstract" @content="description"></small></p>
	<div itemprop="articleBody" @html="content" />
</article>