all repos — site @ 69f5204c853977fb1c0b0b7d42dd79037e4122f0

source for my site, found at icyphox.sh

templates: fix accidental template change
Anirudh Oppiliappan x@icyphox.sh
Fri, 03 Jan 2025 10:35:14 +0200
commit

69f5204c853977fb1c0b0b7d42dd79037e4122f0

parent

353e3bb16c95f70229fe376935383f0ad51cd6a5

2 files changed, 3 insertions(+), 3 deletions(-)

jump to
M templates/blog.htmltemplates/blog.html

@@ -23,11 +23,11 @@ {{ $posts := .Extra }}

{{ range $posts }} <li> <div class="post"> - <a style="text-transform: lowercase" href=/blog/{{ .Meta.slug }}>{{ .Meta.title }}</a> + <a href=/blog/{{ .Meta.slug }}>{{ .Meta.title }}</a> {{ if .Meta.draft }} (<span class="draft">draft</span>) {{ end }} - <p style="text-transform: lowercase" class="subtitle">{{ .Meta.subtitle }}</p> + <p class="subtitle">{{ .Meta.subtitle }}</p> </div> {{ $dateStr := .Meta.date }} {{ $date := parsedate $dateStr }}
M templates/index.htmltemplates/index.html

@@ -26,7 +26,7 @@ {{ $posts := .Extra.blog }}

{{ range slice $posts 0 3 }} <li> <div class="post"> - <a style="text-transform: lowercase" href=/blog/{{ .Meta.slug }}>{{ .Meta.title }}</a> + <a href=/blog/{{ .Meta.slug }}>{{ .Meta.title }}</a> {{ if .Meta.draft }} (<span class="draft">draft</span>) {{ end }}