Don't skip <h?> levels
This commit is contained in:
parent
2df3bde44b
commit
6a63b32199
2 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h3>{{ page.title }}</h3>
|
<h2>{{ page.title }}</h2>
|
||||||
<article>
|
<article>
|
||||||
{% if page.date and page.date is defined %}
|
{% if page.date and page.date is defined %}
|
||||||
<p>Published on: {{ page.date }}</p>
|
<p>Published on: {{ page.date }}</p>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.html" %} {% block content %}
|
{% extends "base.html" %} {% block content %}
|
||||||
<h3>{{ section.title }}</h3>
|
<h2>{{ section.title }}</h2>
|
||||||
<article>
|
<article>
|
||||||
<ul>
|
<ul>
|
||||||
{% for page in section.pages %}
|
{% for page in section.pages %}
|
||||||
|
|
Loading…
Reference in a new issue