about summary refs log tree commit diff stats
path: root/layouts/_default/single.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/_default/single.html')
-rw-r--r--layouts/_default/single.html21
1 files changed, 9 insertions, 12 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index e0b2f94..f627d2d 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -1,15 +1,12 @@
 {{ template "theme/partials/head.html" . }}
-<body>
-
+	<body>
 {{ template "theme/partials/sidebar.html" . }}
-
-    <div class="content container">
-<div class="post">
-  <h1>{{ .Title }}</h1>
-  <span class="post-date">{{ .Date.Format "Mon, Jan 2, 2006" }}</span>
-      {{ .Content }}
-</div>
-</div>
-
-  </body>
+		<div class="content container">
+			<div class="post">
+				<h1>{{ .Title }}</h1>
+				<span class="post-date">{{ .Date.Format "Mon, Jan 2, 2006" }}</span>
+				{{ .Content }}
+			</div>
+		</div>
+	</body>
 </html>