mirror of https://gitlab.com/curben/blog
fix(schema): use "text" for post content
* articleBody is only applicable for (news) Article * https://schema.org/Blog * https://schema.org/Article
This commit is contained in:
parent
843a8fe74f
commit
5d216d3edf
|
@ -11,7 +11,7 @@
|
|||
<% if (post.subtitle) { %>
|
||||
<p class="entry-summary"><%- post.subtitle %></p>
|
||||
<% } %>
|
||||
<div class="entry-content article-entry typo" itemprop="articleBody">
|
||||
<div class="entry-content article-entry typo" itemprop="text">
|
||||
<%- toc(page.content, {list_number: false}) %>
|
||||
<%- post.content %>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue