aboutsummaryrefslogtreecommitdiff
path: root/layouts/_partials
diff options
context:
space:
mode:
authorNicholas Johnson <>2026-09-05 00:00:00 +0000
committerNicholas Johnson <>2026-09-06 00:00:00 +0000
commit951f904bdd337aad611e12be2e4fc9cb180ce1f4cbbb3dae01274346fbe6d195 (patch)
tree56eb43362b83004042b2f801439845cd67047727ddfb2ad72b16a8c056d4a2f4 /layouts/_partials
parent047b1fcfcf26ff093e35490c6c4f5d50dac5e70e3ca38a7f3628a7908ad8362f (diff)
downloadhugo-theme-journal-951f904bdd337aad611e12be2e4fc9cb180ce1f4cbbb3dae01274346fbe6d195.tar.gz
hugo-theme-journal-951f904bdd337aad611e12be2e4fc9cb180ce1f4cbbb3dae01274346fbe6d195.zip
Replace visual dividers w/space for entry metadata
Less visual clutter, improves readability.
Diffstat (limited to 'layouts/_partials')
-rw-r--r--layouts/_partials/pageinfo.gmi2
-rw-r--r--layouts/_partials/pageinfo.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/layouts/_partials/pageinfo.gmi b/layouts/_partials/pageinfo.gmi
index 9993d93..7c822f3 100644
--- a/layouts/_partials/pageinfo.gmi
+++ b/layouts/_partials/pageinfo.gmi
@@ -15,4 +15,4 @@
{{ $nonBreakingTags = $nonBreakingTags | append $nonBreakingTag -}}
{{ end -}}
-{{ emojify ":calendar:" }} {{ $nonBreakingPublishDate }} | {{ emojify ":stopwatch:" }} {{ $nonBreakingReadingTime }}{{ if $nonBreakingTags }} | {{ emojify ":label:" }} {{ end }}{{ range $key, $val := $nonBreakingTags }}{{ if $key }}, {{ end }}{{ $val }}{{ end }} \ No newline at end of file
+{{ emojify ":calendar:" }} {{ $nonBreakingPublishDate }} {{ emojify ":stopwatch:" }} {{ $nonBreakingReadingTime }}{{ if $nonBreakingTags }} {{ emojify ":label:" }} {{ end }}{{ range $key, $val := $nonBreakingTags }}{{ if $key }}, {{ end }}{{ $val }}{{ end }} \ No newline at end of file
diff --git a/layouts/_partials/pageinfo.html b/layouts/_partials/pageinfo.html
index 3ca8fe9..9d60ea6 100644
--- a/layouts/_partials/pageinfo.html
+++ b/layouts/_partials/pageinfo.html
@@ -20,4 +20,4 @@
{{ $nonBreakingTags = $nonBreakingTags | append $nonBreakingTag -}}
{{ end -}}
-{{ emojify ":calendar:" }}&nbsp;<time {{ printf "datetime=%q" (.Page.PublishDate | time.Format "2006-01-02T15:04:05-0700") | safeHTMLAttr }}>{{ $nonBreakingPublishDate | safeHTML }}</time> | {{ emojify ":stopwatch:" }}&nbsp;<time datetime="PT{{ .ReadingTime }}M">{{ $nonBreakingReadingTime | safeHTML }}</time>{{ if $nonBreakingTags }} | {{ emojify ":label:" }}&nbsp;{{ end }}{{ range $key, $val := $nonBreakingTags }}{{ if $key }} {{ end }}<a class="link link--internal" href='{{ relLangURL (lower (i18n "tags")) }}/{{ index $breakingTags $key | urlize }}/' rel="noreferrer">{{ $val | safeHTML }}</a>{{ end }}
+<span class="meta-item">{{ emojify ":calendar:" }}&nbsp;<time {{ printf "datetime=%q" (.Page.PublishDate | time.Format "2006-01-02T15:04:05-0700") | safeHTMLAttr }}>{{ $nonBreakingPublishDate | safeHTML }}</time></span><span class="meta-item">{{ emojify ":stopwatch:" }}&nbsp;<time datetime="PT{{ .ReadingTime }}M">{{ $nonBreakingReadingTime | safeHTML }}</time></span>{{ if $nonBreakingTags }}<span class="meta-item">{{ emojify ":label:" }}&nbsp;{{ range $key, $val := $nonBreakingTags }}{{ if $key }} {{ end }}<a class="link link--internal" href='{{ relLangURL (lower (i18n "tags")) }}/{{ index $breakingTags $key | urlize }}/' rel="noreferrer">{{ $val | safeHTML }}</a>{{ end }}</span>{{ end }}