about summary refs log tree commit diff stats
path: root/layouts/_default/single.html
blob: 984fcab8ca873d7438efbc7dfef85e508423a5e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{ partial "head.html" . }}
	<body class="theme-base-0b layout-reverse h-entry" itemscope itemtype="http://schema.org/BlogPosting">
		<main class="content container" role="main">
			<article class="post">
				<header>
					<h1 class="post-title p-name" itemprop="name">{{ .Title }}</h1>
					<time class="post-date dt-published" datetime="{{ .Date.Format "2006-01-02T15:04:05Z" }}" itemprop="datePublished">{{ .Date.Format "Monday, 2 January 2006" }}</time>
				</header>
				<main class="post-content e-content" itemprop="articleBody">
					{{ .Content }}
				</main>
			</article>
		</main>
{{ partial "sidebar.html" . }}
	</body>
</html>