chore: Make the titles h2 rather than h1
Signed-off-by: Awiteb <a@4rs.nl>
This commit is contained in:
parent
59f8663011
commit
fd51da590e
3 changed files with 3 additions and 3 deletions
|
@ -113,7 +113,7 @@
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</nav>
|
</nav>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% block header %}{% if title %}<h1>{{ config.title }}</h1>{% endif %}{% endblock header %}
|
{% block header %}{% if title %}<h2>{{ config.title }}</h2>{% endif %}{% endblock header %}
|
||||||
</header>
|
</header>
|
||||||
<main class="page-content" aria-label="Content">
|
<main class="page-content" aria-label="Content">
|
||||||
{% block content %}{% endblock content %}
|
{% block content %}{% endblock content %}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
|
|
||||||
{% block header %}
|
{% block header %}
|
||||||
<h1>{{ page.title }}</h1>
|
<h2>{{ page.title }}</h2>
|
||||||
{% endblock header %}
|
{% endblock header %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
|
|
||||||
{% block header %}
|
{% block header %}
|
||||||
<h1>{{ section.title }}</h1>
|
<h2>{{ section.title }}</h2>
|
||||||
{% endblock header %}
|
{% endblock header %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
Loading…
Reference in a new issue