diff options
author | C. Lente <7017340+clente@users.noreply.github.com> | 2023-02-09 16:56:09 -0300 |
---|---|---|
committer | C. Lente <7017340+clente@users.noreply.github.com> | 2023-02-09 16:56:09 -0300 |
commit | 2ba59f18db6d5767653e3cad20d9a28da5f9aa79 (patch) | |
tree | f3cf1e0f5f519f6a9524c47c165167998ec4fbfb /layouts/_default | |
parent | 3ec95503252645b87c625df10a8ac44d04563166 (diff) | |
download | hugo-bearcub-2ba59f18db6d5767653e3cad20d9a28da5f9aa79.tar.gz hugo-bearcub-2ba59f18db6d5767653e3cad20d9a28da5f9aa79.tar.bz2 |
Reproduce lente.dev setup
Diffstat (limited to 'layouts/_default')
-rw-r--r-- | layouts/_default/list.html | 7 | ||||
-rw-r--r-- | layouts/_default/single.html | 2 |
2 files changed, 3 insertions, 6 deletions
diff --git a/layouts/_default/list.html b/layouts/_default/list.html index 6c4f7d0..67924e7 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -1,10 +1,7 @@ {{ define "main" }} <content> {{ if .Data.Singular }} - <h3 style="margin-bottom:0">{{ i18n "filter" }} "{{ .Title }}"</h3> - <small> - <a href="{{ i18n "posts" }}">{{ i18n "remove" }}</a> - </small> + <h3 style="margin-bottom:0">{{ i18n "filtering-for" }} "{{ .Title }}"</h3> {{ end }} <ul class="blog-posts"> {{ range .Pages }} @@ -12,7 +9,7 @@ <span> <i> <time datetime='{{ .Date.Format "2006-01-02" }}' pubdate> - {{ .Date.Format (default "02 Jan, 2006" .Site.Params.dateFormat) }} + {{ .Date.Format (default "2006-01-02" .Site.Params.dateFormat) }} </time> </i> </span> diff --git a/layouts/_default/single.html b/layouts/_default/single.html index 40d0b03..cd6b095 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -4,7 +4,7 @@ <p> <i> <time datetime='{{ .Date.Format "2006-01-02" }}' pubdate> - {{ .Date.Format (default "02 Jan, 2006" .Site.Params.dateFormat) }} + {{ .Date.Format (default "2006-01-02" .Site.Params.dateFormat) }} </time> </i> </p> |