hexo-theme-keep/layout/home-content.ejs

33 lines
1.0 KiB
Plaintext
Raw Normal View History

<div class="home-content-container fade-in-down-animation">
<ul class="home-article-list">
<% page.posts.forEach(post => { %>
<li class="home-article-item">
2020-11-19 11:58:54 +08:00
<% if (post.sticky) { %>
<i class="fas fa-thumbtack top-icon"></i>
2020-10-28 00:20:32 +08:00
<% } %>
<h3 class="home-article-title">
<a href="<%- url_for(post.path) %>">
2020-04-29 10:44:47 +08:00
<%= post.title %>
2020-04-13 18:27:16 +08:00
</a>
</h3>
<div class="home-article-content keep-markdown-body">
<% if (post.excerpt) { %>
<%- post.excerpt %>
<% } else { %>
<%- truncate(strip_html(post.content), {length: 128}) %>
<% } %>
</div>
<%- partial('_partial/home-article-meta-info', {post: post}) %>
</li>
<% }) %>
</ul>
<div class="home-paginator">
<%- partial('_partial/paginator', {pageObject: page}) %>
</div>
</div>