diff options
Diffstat (limited to 'layouts/_default/single.html')
| -rw-r--r-- | layouts/_default/single.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html index e69de29..24bc5c9 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -0,0 +1,19 @@ +{{- define "main" }} +<article class="post"> + <header class="post__header"> + <h1 class="post__headline">{{ .Title }}</h1> + <time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}" class="post__publish-date"> + {{ .Date | time.Format ":date_medium" }} + </time> + </header> + + <div class="post__content"> + {{ .Content }} + </div> + + <footer class="post__footer"> + {{ partial "single/tags" . }} + {{ partial "single/next-prev" . }} + </footer> +</article> +{{- end }} |
