You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

87 lines
2.8 KiB

<article id="<%= post.layout %>-<%= post.slug %>"
class="post white-box article-type-<%= post.layout %>"
itemscope itemprop="blogPost">
<section class='meta'>
<h2 class="title">
<a href="<%- url_for(post.path) %>">
<% if(post.title){ %>
<%= post.title %>
<% } else if (post.date) { %>
<%= date(post.date, 'YYYY-MM-DD dddd') %>
<% } %>
</a>
</h2>
<time>
<%= date(post.date, 'YYYY-MM-DD dddd') %>
</time>
<%- partial('categories',{post:post}) %>
</section>
<% if(post.toc!==false){ %>
<!-- <section class="toc-wrapper"><%- toc(post.content, {list_number: false}) %></section> -->
<% } %>
<section class="article typo">
<% if(post.musicid){ %>
<iframe frameborder="no" border="0" marginwidth="0" marginheight="0" width=340 height=86 src="//music.163.com/outchain/player?type=2&id=<%= post.musicid %>&auto=0&height=66"></iframe>
<% } %>
<div class="article-entry" itemprop="articleBody">
<%- post.content %>
</div>
<% if (post.tags && post.tags.length) { %>
<div class="article-tags tags">
<% post.tags.each(function(item){ %>
<a href="<%- url_for(item.path) %>"><i class="fa fa-tag"></i> <%=item.name %></a>
<%})%>
</div>
<% } %>
<% if(post.prev || post.next){ %>
<div class="art-item-footer">
<% if(post.prev){ %>
<span class="art-item-left"><i class="icon icon-chevron-thin-left"></i>prev:<a href="<%=url_for(post.prev.path)%>" rel="prev" title="<%=post.prev.title%>">
<%= post.prev.title %>
</a></span>
<% } %>
<% if(post.next){ %>
<span class="art-item-right">next:<a href="<%=url_for(post.next.path) %>" rel="next" title="<%=post.next.title %>">
<%=post.next.title %>
</a><i class="icon icon-chevron-thin-right"></i></span>
<%} %>
</div>
<%} %>
</section>
<% if (post.comments && config.livere_shortname){ %>
<section id="comments">
<div id="lv-container" data-id="city" data-uid="MTAyMC8yOTU4Ny82MTU1">
<script type="text/javascript">
(function(d, s) {
var j, e = d.getElementsByTagName(s)[0];
if (typeof LivereTower === 'function') { return; }
j = d.createElement(s);
j.src = 'https://cdn-city.livere.com/js/embed.dist.js';
j.async = true;
e.parentNode.insertBefore(j, e);
})(document, 'script');
</script>
<noscript> 为正常使用来必力评论功能请激活JavaScript</noscript>
</div>
</section>
<% } %>
<% if (post.comments && config.disqus_shortname){ %>
<section id="comments">
<div id="disqus_thread">⚠无法加载评论系统,请确保您的网络能够正常访问 <a href="https://disqus.com">Disqus</a> 。</div>
</section>
<% } %>
</article>
<script>
window.subData = {
title: '<%= post.title %>',
tools: true
}
</script>