Browse Source

title must be uppercase

pull/1/head
wes 7 years ago
parent
commit
63024afd80
  1. 2
      src/templates/index.html

2
src/templates/index.html

@ -3,7 +3,7 @@
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#67ADDB"/>
<title>{{ postcontent["title"] if page == "posts" else page }}</title>
<title>{{ postcontent["title"] if page == "posts" else "%s%s" % (page[0].upper(), page[1:]) }}</title>
</head>
<body>
<noscript>{{ postcontent['content']|safe }}</noscript>

Loading…
Cancel
Save