forked from github/pelican
In the simple theme, some templates are using `h1`, others are using `h2` for the main title of the page (other than the one in the header). This commit changes that so all of the pages are using `h1`.
8 lines
192 B
HTML
8 lines
192 B
HTML
{% extends "index.html" %}
|
|
|
|
{% block title %}{{ SITENAME }} - {{ category }} category{% endblock %}
|
|
|
|
{% block content_title %}
|
|
<h1>Articles in the {{ category }} category</h1>
|
|
{% endblock %}
|
|
|