mirror of
https://github.com/wahyd4/hexo-phase-junv.git
synced 2026-08-26 13:25:57 +10:00
26 lines
736 B
Plaintext
26 lines
736 B
Plaintext
<article class="post">
|
|
<% if (item.photos){ %>
|
|
<%- partial('post/gallery') %>
|
|
<% } %>
|
|
<header>
|
|
<%- partial('post/title') %>
|
|
<% if (item.layout == 'post'){ %><%- partial('post/date') %><% } %>
|
|
</header>
|
|
<div class="entry-content">
|
|
<% if (item.excerpt && index){ %>
|
|
<%- item.excerpt %>
|
|
<% } else { %>
|
|
<%- item.content %>
|
|
<% } %>
|
|
<% if (item.layout == 'post'){ %>
|
|
<footer class="meta">
|
|
<%- partial('post/category') %>
|
|
<%- partial('post/tag') %>
|
|
<% if (config.disqus_shortname && item.comment){ %>
|
|
<a href="<%- item.permalink %>#disqus_thread" class="comment">Comments</a>
|
|
<% } %>
|
|
</footer>
|
|
<% } %>
|
|
</div>
|
|
<%- partial('comment') %>
|
|
</article> |