... | ... |
@@ -5,9 +5,9 @@ |
5 | 5 |
{% endif %} |
6 | 6 |
<header> |
7 | 7 |
{% if index %} |
8 |
- <h1 class="entry-title"><a href="{{ page.url }}">{{ page.title }}</a></h1> |
|
8 |
+ <h1 class="entry-title"><a href="{{ page.url }}">{{ page.title | titlecase }}</a></h1> |
|
9 | 9 |
{% else %} |
10 |
- <h1 class="entry-title">{{ page.title }}</h1> |
|
10 |
+ <h1 class="entry-title">{{ page.title | titlecase }}</h1> |
|
11 | 11 |
{% endif %} |
12 | 12 |
{% unless page.nometa %} |
13 | 13 |
<p> |
... | ... |
@@ -26,3 +26,4 @@ |
26 | 26 |
{% else %} |
27 | 27 |
<div class="entry-content">{{ content | smart_quotes }}</div> |
28 | 28 |
{% endif %} |
29 |
+ |