37 lines
1.2 KiB
Plaintext
37 lines
1.2 KiB
Plaintext
<div class="home-content-container">
|
|
|
|
<ul class="home-article-list">
|
|
<% page.posts.forEach(post => { %>
|
|
<li class="home-article-item">
|
|
<div class="home-article-title">
|
|
<h3>
|
|
<a class="article-title-hover-animation" href="<%- url_for(post.path) %>"><%= post.title %></a>
|
|
</h3>
|
|
</div>
|
|
|
|
<div class="home-article-content">
|
|
<%- truncate(strip_html(post.content), {length: 150}) %>
|
|
</div>
|
|
|
|
<div class="home-article-meta-info">
|
|
<%- partial('_partial/article-meta-info', {articleObject: post, index: true}) %>
|
|
</div>
|
|
</li>
|
|
<% }) %>
|
|
</ul>
|
|
|
|
<div class="paginator">
|
|
<% if (page.prev) { %>
|
|
<a class="prev btn"
|
|
href="<%- url_for(page.prev == 1 ? '' : '/page/' + page.prev) %>"
|
|
><%- __('prev') %></a>
|
|
<% } %>
|
|
|
|
<% if (page.next) { %>
|
|
<a class="next btn"
|
|
href="<%- url_for('/page/' + page.next) %>"
|
|
><%- __('next') %></a>
|
|
<% } %>
|
|
</div>
|
|
</div>
|