hexo-theme-ayer/layout/_partial/article.ejs

89 lines
2.6 KiB
Plaintext
Raw Normal View History

2019-12-03 11:37:44 +00:00
<article id="<%= post.layout %>-<%= post.slug %>" class="article article-type-<%= post.layout %>" itemscope
itemprop="blogPost" data-scroll-reveal>
<div class="article-inner">
<% if (post.link || post.title){ %>
<header class="article-header">
<%- partial('post/title', {class_name: 'article-title'}) %>
</header>
<% } %>
<% if (index || is_post()) { %>
<div class="article-meta">
<%- partial('post/date', {class_name: 'article-date', date_format: null}) %>
<%- partial('post/category') %>
2020-01-07 06:05:02 +00:00
<% if(theme.word_count && theme.word_count.enable && !post.no_word_count){%>
<%- partial('post/word') %>
<% } %>
2019-12-03 11:37:44 +00:00
</div>
<% } %>
<% if (theme.toc && is_post()){ %>
<%- partial('post/tocbot') %>
<% } %>
2020-02-15 15:28:28 +00:00
<% if (theme.excerpt_all&&index){ %>
<% }else{ %>
2019-12-03 11:37:44 +00:00
<div class="article-entry" itemprop="articleBody">
<%- partial('post/justifiedGallery') %>
<%- partial('post/gallery') %>
<% if (post.excerpt && index){ %>
<%- post.excerpt %>
<% if (theme.excerpt_link){ %>
<a class="article-more-link" href="<%- url_for(post.path) %>"><%= theme.excerpt_link %></a>
<% } %>
<% } else { %>
<%- post.content %>
<% } %>
2020-02-07 04:42:33 +00:00
<!-- reward -->
2020-01-09 12:26:44 +00:00
<% if ((theme.reward_type === 2 || (theme.reward_type === 1 && post.reward)) && !index && !post.no_reward){ %>
2020-01-07 06:05:02 +00:00
<div id="reward-btn">
2020-04-04 06:38:01 +00:00
<%= __('post.reward') %>
2020-01-07 06:05:02 +00:00
</div>
<% } %>
2019-12-03 11:37:44 +00:00
</div>
2020-02-12 04:50:12 +00:00
<% } %>
2020-02-15 15:28:28 +00:00
2020-02-07 04:42:33 +00:00
<!-- copyright -->
<% if (((theme.copyright_type === 2) || (theme.copyright_type === 1 && post.copyright)) && !index){ %>
<div class="declare">
<ul class="post-copyright">
<li>
<i class="ri-copyright-line"></i>
2020-04-04 06:38:01 +00:00
<strong><%= __('post.copyright_title') %> </strong>
<%= __('post.copyright_content') %>
2020-02-07 04:42:33 +00:00
</li>
</ul>
</div>
<% } %>
2019-12-03 11:37:44 +00:00
<footer class="article-footer">
2020-02-06 15:14:35 +00:00
<% if (!index && theme.share_enable){ %>
<%- partial('post/share') %>
<% } %>
2019-12-03 11:37:44 +00:00
<%- partial('post/tag') %>
2020-02-07 04:42:33 +00:00
2019-12-03 11:37:44 +00:00
</footer>
</div>
<% if (!index){ %>
<%- partial('post/nav') %>
<% } %>
2020-01-09 12:26:44 +00:00
<% if (theme.valine && theme.valine.enable && !post.no_valine){ %>
2019-12-03 11:37:44 +00:00
<%- partial('post/valine', {
key: post.slug,
title: post.title,
url: config.url+url_for(post.path)
}) %>
<% } %>
<% if (is_post()) { %>
<%- partial('post/gitalk') %>
2019-12-08 11:05:30 +00:00
<% } %>
2020-04-10 08:06:54 +00:00
<% if (theme.minivaline && theme.minivaline.enable && !post.no_minivaline){ %>
<%- partial('post/minivaline') %>
<% } %>
2019-12-03 11:37:44 +00:00
</article>