diff options
| author | Danilo M. <danix@danix.xyz> | 2026-04-29 11:44:14 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-04-29 11:44:14 +0200 |
| commit | 46cefbb27e2b0954c3a8c695354ede751847c4e7 (patch) | |
| tree | 0b5b5c046dc39800efc09dbdd59fda339de872dd /layouts/partials/sidebar.html | |
| parent | db27bd6602da9cb3d00cd24bf7e4bdb1db1d2bdd (diff) | |
| download | danixxyz-theme-46cefbb27e2b0954c3a8c695354ede751847c4e7.tar.gz danixxyz-theme-46cefbb27e2b0954c3a8c695354ede751847c4e7.zip | |
feat: consolidate article metadata into sidebar widget
Remove publication date, lastmod, reading time, and type badge from
article header. Header now shows title + type-colored accent lines only.
Move publication and lastmod dates to sidebar stats widget, between author
and word count. Reading time and type badge already in sidebar — no
duplication needed. Removes orphaned bottom border and padding from header
outer div.
Diffstat (limited to 'layouts/partials/sidebar.html')
| -rw-r--r-- | layouts/partials/sidebar.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/layouts/partials/sidebar.html b/layouts/partials/sidebar.html index 483e90b..5562215 100644 --- a/layouts/partials/sidebar.html +++ b/layouts/partials/sidebar.html @@ -17,6 +17,26 @@ <i data-feather="user" class="w-4 h-4 shrink-0" aria-hidden="true"></i> <span>{{ .Site.Params.author }}</span> </li> + {{ if .PublishDate }} + <li class="flex items-center gap-2"> + <i data-feather="calendar" class="w-4 h-4 shrink-0" aria-hidden="true"></i> + <time datetime="{{ .PublishDate.Format "2006-01-02T15:04:05Z07:00" }}"> + {{ .PublishDate.Format "Jan 2, 2006" }} + </time> + </li> + {{ end }} + {{ if .Lastmod }} + {{ $lastmodDate := .Lastmod.Format "2006-01-02" }} + {{ $pubDate := .PublishDate.Format "2006-01-02" }} + {{ if ne $lastmodDate $pubDate }} + <li class="flex items-center gap-2"> + <i data-feather="edit-2" class="w-4 h-4 shrink-0" aria-hidden="true"></i> + <time datetime="{{ .Lastmod.Format "2006-01-02T15:04:05Z07:00" }}"> + {{ .Lastmod.Format "Jan 2, 2006" }} + </time> + </li> + {{ end }} + {{ end }} <li class="flex items-center gap-2"> <i data-feather="file-text" class="w-4 h-4 shrink-0" aria-hidden="true"></i> <span>{{ .WordCount }} {{ i18n "words" }}</span> |
