111 lines
4.3 KiB
Plaintext
111 lines
4.3 KiB
Plaintext
<article class="article article-type-<%= post.layout %> <%if(index){%> article-index<%}%>" itemscope itemprop="blogPost">
|
|
<div class="article-inner">
|
|
<% if (post.link || post.title){ %>
|
|
<header class="article-header">
|
|
<%- partial('post/title', {class_name: 'article-title'}) %>
|
|
<% if (!post.noDate){ %>
|
|
<%- partial('post/date', {class_name: 'archive-article-date',
|
|
date_format: config.date_format+(post.excerpt && index ? '':' '+config.time_format)}) %>
|
|
<% } %>
|
|
</header>
|
|
<% } %>
|
|
<div class="article-entry" itemprop="articleBody">
|
|
<% if (post.excerpt && index){ %>
|
|
<%- post.excerpt %>
|
|
<% } else { %>
|
|
<div class="post-count">
|
|
<div class="count-item">总字数 <span><%= wordcount(post.content) %></span></div> |
|
|
<div class="count-item">预计阅读时间 <span><%= min2read(post.content) %></span> 分钟</div>
|
|
</div>
|
|
<%- post.content %>
|
|
<% } %>
|
|
|
|
<% if ((theme.reward_type === 2 || (theme.reward_type === 1 && post.reward)) && !index){ %>
|
|
<div class="page-reward">
|
|
<a href="javascript:;" class="page-reward-btn tooltip-top">
|
|
<div class="tooltip tooltip-east">
|
|
<span class="tooltip-item">
|
|
赏
|
|
</span>
|
|
<span class="tooltip-content">
|
|
<span class="tooltip-text">
|
|
<span class="tooltip-inner">
|
|
<p class="reward-p"><i class="icon icon-quo-left"></i><%= theme.reward_wording%><i class="icon icon-quo-right"></i></p>
|
|
<div class="reward-box">
|
|
<% if(theme.alipay) {%>
|
|
<div class="reward-box-item">
|
|
<img class="reward-img" src="<%= theme.alipay%>">
|
|
<span class="reward-type">支付宝</span>
|
|
</div>
|
|
<% } %>
|
|
<% if(theme.weixin) {%>
|
|
<div class="reward-box-item">
|
|
<img class="reward-img" src="<%= theme.weixin%>">
|
|
<span class="reward-type">微信</span>
|
|
</div>
|
|
<% } %>
|
|
</div>
|
|
</span>
|
|
</span>
|
|
</span>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
<% } %>
|
|
</div>
|
|
<div class="article-info article-info-index">
|
|
<%if(post.top){%>
|
|
<div class="article-pop-out tagcloud">
|
|
<i class="icon-tuding"></i>
|
|
<a class="article-tag-list-link color3">置顶</a>
|
|
</div>
|
|
<% } %>
|
|
<%- partial('post/tag') %>
|
|
<%- partial('post/category') %>
|
|
<% if (index){ %>
|
|
<p class="article-more-link">
|
|
<a class="article-more-a" href="<%- url_for(post.path) %>"><%= __('show_full_text') %> >></a>
|
|
</p>
|
|
<% } %>
|
|
<% if (!index && theme.share_jia){ %>
|
|
<%- partial('post/share') %>
|
|
<% } %>
|
|
<div class="clearfix"></div>
|
|
</div>
|
|
</div>
|
|
</article>
|
|
<% if (!index){ %>
|
|
<%- partial('post/nav') %>
|
|
<% } %>
|
|
<%- partial('_partial/aside') %>
|
|
|
|
<% if (!index && post.comments){ %>
|
|
<% if (theme.changyan_appid && theme.changyan_conf){ %>
|
|
<%- partial('post/changyan', {
|
|
key: post.slug,
|
|
title: post.title,
|
|
url: config.url+url_for(post.path)
|
|
}) %>
|
|
<% } %>
|
|
|
|
<% if (theme.disqus || config.disqus_shortname){ %>
|
|
<section id="comments">
|
|
<div id="disqus_thread"></div>
|
|
<script type="text/javascript">
|
|
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
|
|
var disqus_shortname = '<%= theme.disqus || config.disqus_shortname %>'; // required: replace example with your forum shortname
|
|
|
|
/* * * DON'T EDIT BELOW THIS LINE * * */
|
|
(function() {
|
|
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
|
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
|
|
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
|
})();
|
|
</script>
|
|
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
|
</section>
|
|
<% }
|
|
if(theme.gitalk.enable || theme.valine.enable){ %>
|
|
<div id="comments"></div>
|
|
<% } %>
|
|
<% } %> |