about summary refs log tree commit diff stats
path: root/layouts/_default/single.html
blob: 3cc76411f375c8cb1f954c4212de9d7cd3af8426 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{ template "theme/partials/head.html" . }}
	<body class="theme-base-0b layout-reverse">
		<main class="content container" role="main">
			<article class="post">
				<h1>{{ .Title }}</h1>
				<time class="post-date" datetime="{{ .Date.Format "2006-01-02 15:04:05Z" }}">{{ .Date.Format "Monday, 2 January 2006" }}</time>
				{{ .Content }}
			</article>
		</main>
{{ template "theme/partials/sidebar.html" . }}
	</body>
</html>