From 63024afd80ec3a1b475d541ba73d83d5f2559897 Mon Sep 17 00:00:00 2001 From: wes Date: Mon, 28 Aug 2017 18:26:24 -0400 Subject: [PATCH] title must be uppercase --- src/templates/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/templates/index.html b/src/templates/index.html index 6528591..40a8f25 100644 --- a/src/templates/index.html +++ b/src/templates/index.html @@ -3,7 +3,7 @@ - {{ postcontent["title"] if page == "posts" else page }} + {{ postcontent["title"] if page == "posts" else "%s%s" % (page[0].upper(), page[1:]) }}