shadowfacts.net/site/includes/article-listing.html.ejs

21 lines
696 B
Plaintext
Raw Normal View History

2020-01-27 19:31:59 -05:00
<article itemscope itemtype="https://schema.org/BlogPosting">
<h2 class="article-title" itemprop="headline">
<a href="<%= post.metadata.permalink %>" itemprop="url mainEntityOfPage">
2022-01-20 12:46:17 -05:00
<% if (post.metadata.htmlTitle) { %>
<%- post.metadata.htmlTitle %>
<% } else { %>
<%= post.metadata.title %>
<% } %>
2020-01-27 19:31:59 -05:00
</a>
</h2>
<%- include("article-meta.html.ejs", { metadata: post.metadata }) %>
<div class="article-content" itemprop="description">
2022-04-07 22:49:37 -04:00
<%- post.metadata.excerpt || post.text %>
2020-01-27 19:31:59 -05:00
</div>
2022-04-07 22:49:37 -04:00
<% if (post.metadata.excerpt) { %>
<p class="read-more-link">
<a href="<%= post.metadata.permalink%>">Read more...</a>
</p>
<% } %>
2022-01-20 12:46:17 -05:00
</article>