Ensure that each page only has a single <h1>

According to Bing's webmaster tool multiple <h1> tags on a site are a SEO problem.
This commit is contained in:
Philipp Oppermann
2020-02-21 11:17:31 +01:00
parent b532c052ad
commit 516bc38b2b
2 changed files with 6 additions and 6 deletions

View File

@@ -24,9 +24,9 @@
<div class="container content">
<header class="masthead">
<div style="position:relative">
<h1 class="masthead-title">
<h2 class="masthead-title">
<a href="{{ config.base_url | safe }}" title="Home">{{ config.title | safe }}</a>
</h1>
</h2>
<p><small>{{ config.extra.subtitle | replace(from=" ", to="&nbsp;") | safe }}</small></p>
{% block header %}{% endblock header %}
</div>