about summary refs log tree commit diff stats
path: root/layouts/_default/single.html
diff options
context:
space:
mode:
authorAlan Pearce2014-06-07 10:34:22 +0100
committerAlan Pearce2014-06-07 10:34:22 +0100
commit8e077a0573cd45be7438ff617b59d7d3e72924ea (patch)
treea0d18dbd8c4fe3780801dd7dec2d8c644f1d41e1 /layouts/_default/single.html
parent15e3433c673d692232b0140da8160324ef7c2fa2 (diff)
downloadhyde-8e077a0573cd45be7438ff617b59d7d3e72924ea.tar.lz
hyde-8e077a0573cd45be7438ff617b59d7d3e72924ea.tar.zst
hyde-8e077a0573cd45be7438ff617b59d7d3e72924ea.zip
Switch to semantic tags where appropriate
Diffstat (limited to 'layouts/_default/single.html')
-rw-r--r--layouts/_default/single.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index ce35c85..ba9c5cb 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -1,12 +1,12 @@
 {{ template "theme/partials/head.html" . }}
 	<body class="theme-base-0b layout-reverse">
 {{ template "theme/partials/sidebar.html" . }}
-		<div class="content container">
-			<div class="post">
+		<main class="content container" role="main">
+			<article class="post">
 				<h1>{{ .Title }}</h1>
-				<span class="post-date">{{ .Date.Format "Mon, Jan 2, 2006" }}</span>
+				<time class="post-date" datetime="{{ .Date.Format "2006-01-02 15:04:05Z" }}">{{ .Date.Format "Mon, Jan 2, 2006" }}</time>
 				{{ .Content }}
-			</div>
-		</div>
+			</article>
+		</main>
 	</body>
 </html>