summaryrefslogtreecommitdiff
path: root/layouts/_default/single.html
blob: 431e193a67d844f3991887db37533dcbb154cdf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{ partial "header.html" . }}

	<main role="main">
		<article itemscope itemtype="http://schema.org/BlogPosting">
			<h1 class="entry-title" itemprop="headline">{{ .Title }}</h1>
			<span class="entry-meta"><time itemprop="datePublished" datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "2006-01-02" }}</time></span>
			<section itemprop="entry-text">
				{{ .Content }}
			</section>
		</article>
	</main>

{{ partial "footer.html" . }}