2019-06-27 15:11:35 +00:00
|
|
|
<article id="<%= post.layout %>-<%= post.slug %>" class="h-entry article article-type-<%= post.layout %>" itemprop="blogPost" itemscope itemtype="https://schema.org/BlogPosting">
|
2018-09-10 09:21:59 +00:00
|
|
|
<%- partial('_partial/header') %>
|
|
|
|
<hr/>
|
2019-06-27 15:11:35 +00:00
|
|
|
<div class="article-inner">
|
2018-09-10 09:21:59 +00:00
|
|
|
<%- partial('post/gallery') %>
|
2018-11-01 01:05:02 +00:00
|
|
|
<% if (post.link || post.title) { %>
|
2018-09-10 09:21:59 +00:00
|
|
|
<header class="article-header">
|
2019-06-27 15:11:35 +00:00
|
|
|
<%- partial('post/title', {class_name: 'p-name entry-title article-title'}) %>
|
2018-09-10 09:21:59 +00:00
|
|
|
</header>
|
|
|
|
<% } %>
|
2019-06-26 07:49:14 +00:00
|
|
|
<% if (post.subtitle) { %>
|
2019-06-27 15:11:35 +00:00
|
|
|
<p class="p-summary"><%- post.subtitle %></p>
|
2019-06-26 07:49:14 +00:00
|
|
|
<% } %>
|
2019-06-27 15:11:35 +00:00
|
|
|
<div class="e-content article-entry typo" itemprop="articleBody">
|
2019-06-08 08:01:39 +00:00
|
|
|
<%- toc(page.content, {list_number: false}) %>
|
|
|
|
<%- post.content %>
|
2018-09-10 09:21:59 +00:00
|
|
|
</div>
|
|
|
|
<footer class="article-footer">
|
|
|
|
<ul class="article-meta">
|
2018-11-01 01:05:02 +00:00
|
|
|
<% if (post.lastUpdated) { %>
|
|
|
|
<li>
|
2019-06-04 04:25:43 +00:00
|
|
|
<span class="label">
|
|
|
|
<%= __('date_updated') %>:
|
|
|
|
<%- partial('post/updated-date') %>
|
|
|
|
</span>
|
2018-11-01 01:05:02 +00:00
|
|
|
</li>
|
|
|
|
<% } %>
|
2018-09-10 09:21:59 +00:00
|
|
|
<li>
|
2019-06-04 04:25:43 +00:00
|
|
|
<span class="label">
|
|
|
|
<%= __('date_published') %>:
|
|
|
|
<%- partial('post/date') %>
|
|
|
|
</span>
|
2018-09-10 09:21:59 +00:00
|
|
|
</li>
|
|
|
|
<% if (post.categories && post.categories.length) { %>
|
|
|
|
<li>
|
|
|
|
<span class="label"><%= __('category') %>:</span>
|
|
|
|
<%- partial('post/category') %>
|
|
|
|
</li>
|
|
|
|
<% } %>
|
2018-11-01 01:05:02 +00:00
|
|
|
<% if (post.tags && post.tags.length) { %>
|
2018-09-10 09:21:59 +00:00
|
|
|
<li>
|
|
|
|
<span class="label"><%= __('tag') %>:</span>
|
|
|
|
<%- partial('post/tag') %>
|
|
|
|
</li>
|
|
|
|
<% } %>
|
|
|
|
<hr/>
|
|
|
|
</ul>
|
|
|
|
</footer>
|
|
|
|
</div>
|
2018-11-01 01:05:02 +00:00
|
|
|
<% if (!index) { %>
|
2018-09-10 09:21:59 +00:00
|
|
|
<%- partial('post/nav') %>
|
|
|
|
<% } %>
|
|
|
|
</article>
|