Correction of headings hierarchy and styling
3 files changed, 6 insertions(+), 2 deletions(-)
M templates/header.html → 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" %}
M templates/style.css.html → templates/style.css.html
@@ -31,6 +31,10 @@ text-decoration: none; border: 0; } + .title h1 { + font-size: 1.5em; + } + .title span { font-weight: 400; }
M templates/taxonomy_list.html → templates/taxonomy_list.html
@@ -2,7 +2,7 @@ {% extends "base.html" %} {% 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") %}