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:
curben 2019-06-27 22:22:29 +09:30
parent 843a8fe74f
commit 5d216d3edf
1 changed files with 1 additions and 1 deletions

View File

@ -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>