1
0
Fork 0
forked from github/pelican
pelican-theme/pelican/themes/simple/templates/category.html
Pierre Equoy fe4f1ec4ea Uniformize headers in simple theme
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`.
2022-01-17 16:21:44 +08:00

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 %}