From e6d8fd1b4eadfeb01a4735811d1b8e7f45774cea Mon Sep 17 00:00:00 2001 From: Balakrishnan Balasubramanian Date: Tue, 13 May 2025 15:26:30 -0400 Subject: [PATCH] add tags and hr --- layouts/_default/single.html | 6 ++++++ layouts/index.html | 1 + static/css/styles.css | 6 ++++++ 3 files changed, 13 insertions(+) diff --git a/layouts/_default/single.html b/layouts/_default/single.html index 64320a7..4c3f409 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -6,6 +6,12 @@ {{- if eq .Date.IsZero false }} {{- end }} + {{ if .Params.tags }} + │ + {{range .Params.tags}} + {{ . }} + {{end}} + {{end}} {{- if (and (eq .Lastmod.IsZero false) (ne .Lastmod .Date)) }} — last updated {{- end }} diff --git a/layouts/index.html b/layouts/index.html index f877f05..c4d3f4c 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -24,6 +24,7 @@ Read More… {{ end }} +
{{ end }} {{ end }} diff --git a/static/css/styles.css b/static/css/styles.css index 268442a..f1ea81d 100644 --- a/static/css/styles.css +++ b/static/css/styles.css @@ -623,3 +623,9 @@ body { display: none; } } + +.btn { + padding: 0.3em; + border-width: 1px; + border-style: solid; +}