summaryrefslogtreecommitdiff
path: root/layouts/_default/single.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/_default/single.html')
-rw-r--r--layouts/_default/single.html23
1 files changed, 0 insertions, 23 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
deleted file mode 100644
index e1728d3..0000000
--- a/layouts/_default/single.html
+++ /dev/null
@@ -1,23 +0,0 @@
-{{- define "main" }}
-<article class="post">
- <header class="post__header">
- <h1 class="post__headline">
- {{ .Title }}
- </h1>
- {{- with .Date }}
- <time datetime="{{ .Format "2006-01-02T15:04:05Z07:00" }}" class="post__publish-date">
- {{ . | time.Format ":date_medium" }}
- </time>
- {{- end }}
- </header>
-
- <div class="post__content">
- {{ .Content }}
- </div>
-
- <footer class="post__footer">
- {{ partial "single/tags" . }}
- {{ partial "single/next-prev" . }}
- </footer>
-</article>
-{{- end }}