diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/header.html | 2 | ||||
-rw-r--r-- | templates/style.css.html | 4 | ||||
-rw-r--r-- | templates/taxonomy_list.html | 2 |
3 files changed, 6 insertions, 2 deletions
diff --git a/templates/header.html b/templates/header.html index 43f6c40..f92e903 100644 --- a/templates/header.html +++ b/templates/header.html @@ -1,6 +1,6 @@ <header> <a href="{{ get_url(path="@/_index.md", lang=lang) }}" class="title"> - <h2>{{ config.title }}</h2> + <h1>{{ config.title }}</h1> </a> <nav> {% include "nav.html" %} diff --git a/templates/style.css.html b/templates/style.css.html index 00b4131..15d6b3d 100644 --- a/templates/style.css.html +++ b/templates/style.css.html @@ -31,6 +31,10 @@ border: 0; } + .title h1 { + font-size: 1.5em; + } + .title span { font-weight: 400; } diff --git a/templates/taxonomy_list.html b/templates/taxonomy_list.html index e5a5cb3..98b8fc9 100644 --- a/templates/taxonomy_list.html +++ b/templates/taxonomy_list.html @@ -2,7 +2,7 @@ {% block main %} <main> - <h3 style="margin-bottom:0">{{ taxonomy.name | capitalize }}</h3> + <h1>{{ taxonomy.name | capitalize }}</h1> <small> <div> {% set tags = get_taxonomy(kind="tags") %} |