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
178 B
HTML
8 lines
178 B
HTML
{% extends "index.html" %}
|
|
|
|
{% block title %}{{ SITENAME }} - Articles by {{ author }}{% endblock %}
|
|
|
|
{% block content_title %}
|
|
<h1>Articles by {{ author }}</h1>
|
|
{% endblock %}
|
|
|