summaryrefslogtreecommitdiffstats
path: root/themes/Brine/layouts/_default
diff options
context:
space:
mode:
Diffstat (limited to 'themes/Brine/layouts/_default')
-rw-r--r--themes/Brine/layouts/_default/page.html3
-rw-r--r--themes/Brine/layouts/_default/single.html4
2 files changed, 2 insertions, 5 deletions
diff --git a/themes/Brine/layouts/_default/page.html b/themes/Brine/layouts/_default/page.html
deleted file mode 100644
index e32b8d9..0000000
--- a/themes/Brine/layouts/_default/page.html
+++ /dev/null
@@ -1,3 +0,0 @@
-{{ define "main" }} <h1>{{ .Title }}</h1>
- <div>Reading time: {{ .ReadingTime }} min</div>
- {{ .Content }}{{ end }}
diff --git a/themes/Brine/layouts/_default/single.html b/themes/Brine/layouts/_default/single.html
index 9adb790..eb13967 100644
--- a/themes/Brine/layouts/_default/single.html
+++ b/themes/Brine/layouts/_default/single.html
@@ -1,5 +1,5 @@
-{{ define "main" }} <h1>{{ .Title }}</h1>
- <div>Published: {{ .PublishDate.Format "Jan 2, 2006" }}{{ if ne .Lastmod .PublishDate }}, last updated: {{ .Lastmod.Format "Jan 2, 2006" }}{{ end }}</div>
+{{ define "main" }} <h1>{{ .Title }}</h1>{{ if .PublishDate }}
+ <div>Published: {{ .PublishDate.Format "Jan 2, 2006" }}{{ if ne .Lastmod .PublishDate }}, last updated: {{ .Lastmod.Format "Jan 2, 2006" }}{{ end }}</div>{{ end }}
<div>Reading time: {{ .ReadingTime }} min</div>{{- with .Params.tags -}}
<div>Tags: {{ range . -}}{{- with $.Site.GetPage (printf "/%s/%s" "tags" . ) -}}<a href="{{ .Permalink }}">{{ .Title }}</a>&nbsp;{{- end -}}{{- end -}}</div>{{- end -}}
{{ .Content }}{{ end }}