diff options
author | mms <michal@sapka.me> | 2024-05-08 23:19:49 +0200 |
---|---|---|
committer | mms <michal@sapka.me> | 2024-05-08 23:20:31 +0200 |
commit | 5b323e282cac0e8b42e698d3a3ec8923edfcbc6e (patch) | |
tree | 234c53b383c0f89e27d66650e3b2e3e15971b215 /layouts/_default | |
parent | ad42d8473bd2d5cbce2a4d87b2cafd86ccdf3950 (diff) |
feat: dbs super hero
Diffstat (limited to 'layouts/_default')
-rw-r--r-- | layouts/_default/list.html | 2 | ||||
-rw-r--r-- | layouts/_default/single.html | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/layouts/_default/list.html b/layouts/_default/list.html index ed81704..2b045b8 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -5,6 +5,8 @@ {{- if .Params.primary_menu }} {{ partial "single/bottom_nav.html" (dict "menuID" .Page.Params.primary_menu "page" .) }} {{- end }} + + {{ partial "single/dates.html" . }} {{ else }} {{ if in .Page.Params.Categories "blog" }} diff --git a/layouts/_default/single.html b/layouts/_default/single.html index 03b518f..bed5a61 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -4,10 +4,10 @@ {{ .Page.Content }} </article> -{{ partial "single/dates.html" . }} - {{- if .Params.primary_menu }} {{ partial "single/bottom_nav.html" (dict "menuID" .Page.Params.primary_menu "page" .) }} {{- end }} +{{ partial "single/dates.html" . }} + {{- end }} |