diff options
author | jeffreytse <jeffreytse.mail@gmail.com> | 2021-06-25 14:16:44 +0800 |
---|---|---|
committer | jeffreytse <jeffreytse.mail@gmail.com> | 2021-06-25 14:16:44 +0800 |
commit | 404a26e6a9be6785e45f52367f0068eaaa33b3bd (patch) | |
tree | f394dc0d70ac5aac075aba6859499af712623f26 /_includes/views/post-header.html | |
parent | 245fe2a0479819543e3f71499daada138c43377c (diff) |
feat: support banner heading and subheading styles
Diffstat (limited to '_includes/views/post-header.html')
-rw-r--r-- | _includes/views/post-header.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_includes/views/post-header.html b/_includes/views/post-header.html index e59fd91..d5e3db3 100644 --- a/_includes/views/post-header.html +++ b/_includes/views/post-header.html @@ -1,6 +1,6 @@ <header class="post-header"> <h1 class="post-title p-name" itemprop="name headline">{{ heading | default: page.title | escape }}</h1> - <h3 class="post-subtitle">{{ subheading | default: page.subtitle | escape }}</h3> + <h2 class="post-subtitle">{{ subheading | default: page.subtitle | escape }}</h2> <p class="post-meta"> <time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished"> |