From 45f82b635d567e57c2a5b40bd78352b64f47a3ea Mon Sep 17 00:00:00 2001
From: Alexander Bilz <mail@alexbilz.com>
Date: Fri, 04 Mar 2022 18:41:49 +0000
Subject: [PATCH] feat: title case content headings

---
 layouts/index.html |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/layouts/index.html b/layouts/index.html
index 36dd0dc..ef29d79 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -57,7 +57,7 @@
 
       {{ end }}
       <div class="post__content">
-        <h3><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
+        <h3><a href="{{ .RelPermalink }}">{{ upper .Title }}</a></h3>
         {{ if .Site.Params.fullPostContent }}
           {{ .Content }}
 

--
Gitblit v1.10.0