forked from shadowfacts/shadowfacts.net
44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
Plaintext
|
```
|
||
|
metadata.title = "Shadowfacts"
|
||
|
metadata.layout = "default.html.ejs"
|
||
|
```
|
||
|
|
||
|
<div class="main">
|
||
|
<% for (const post of posts) { %>
|
||
|
<article itemscope itemtype="https://schema.org/BlogPosting">
|
||
|
<h2 class="article-title" itemprop="headline">
|
||
|
<a href="<%= post.metadata.permalink %>" class="fancy-link" itemprop="url mainEntityOfPage">
|
||
|
<%= post.metadata.title %>
|
||
|
</a>
|
||
|
</h2>
|
||
|
<%- include("includes/article-meta.html.ejs", { metadata: post.metadata }) %>
|
||
|
<div class="article-content" itemprop="description">
|
||
|
<%- post.metadata.excerpt %>
|
||
|
</div>
|
||
|
</article>
|
||
|
<% } %>
|
||
|
</div>
|
||
|
|
||
|
<div class="pagination">
|
||
|
<p>
|
||
|
<span class="pagination-link">
|
||
|
<% if (pagination.prevLink) { %>
|
||
|
<a href="<%= pagination.prevLink %>">
|
||
|
<span class="arrow arrow-left"></span> <span>Previous</span>
|
||
|
</a>
|
||
|
<% } else { %>
|
||
|
<span class="arrow arrow-left"></span> <span>Previous</span>
|
||
|
<% } %>
|
||
|
</span>
|
||
|
Page <%= pagination.current %> of <%= pagination.total %>
|
||
|
<span class="pagination-link">
|
||
|
<% if (pagination.nextLink) { %>
|
||
|
<a href="<%= pagination.nextLink %>">
|
||
|
<span>Next</span> <span class="arrow arrow-right"></span>
|
||
|
</a>
|
||
|
<% } else { %>
|
||
|
<span>Next</span> <span class="arrow arrow-right"></span>
|
||
|
<% } %>
|
||
|
</span>
|
||
|
</p>
|
||
|
</div>
|