diff options
author | Jeffrey Tse <jeffreytse.mail@gmail.com> | 2023-08-03 22:26:26 +0800 |
---|---|---|
committer | Jeffrey Tse <jeffreytse.mail@gmail.com> | 2023-08-03 22:26:26 +0800 |
commit | 1ce9fbe44d4bd8c22556321ef8c206baabbec5c7 (patch) | |
tree | 38c5e27461ddbdbbad462d11bab51b4f0e7844fb /_includes/views | |
parent | 81f26230551c104efa6e72e390dc0279c187b0db (diff) |
perf: better seo for page paragraph
Diffstat (limited to '_includes/views')
-rw-r--r-- | _includes/views/post-header.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/_includes/views/post-header.html b/_includes/views/post-header.html index d5e3db3..33bbdaa 100644 --- a/_includes/views/post-header.html +++ b/_includes/views/post-header.html @@ -2,7 +2,7 @@ <h1 class="post-title p-name" itemprop="name headline">{{ heading | default: page.title | escape }}</h1> <h2 class="post-subtitle">{{ subheading | default: page.subtitle | escape }}</h2> - <p class="post-meta"> + <div class="post-meta"> <time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished"> {%- assign date_format = site.yat.date_format | default: "%b %-d, %Y" -%} <i class="fa fa-calendar"></i> {{ page.date | date: date_format }} @@ -13,7 +13,7 @@ {%- include functions.html func='get_reading_time' -%} {% assign reading_time = return %} <span class="post-reading-time left-vsplit"><i class="fa fa-clock-o"></i> {{ reading_time }}</span> - </p> + </div> {%- if page.tags.size > 0 -%} <div class="post-tags"> |