mirror of
https://gitlab.silvrtree.co.uk/martind2000/vulcan.git
synced 2025-02-05 12:50:14 +00:00
28 lines
805 B
Plaintext
28 lines
805 B
Plaintext
<div class="row">
|
|
<div class="main">
|
|
<article class="title-list">
|
|
<%if(title){%>
|
|
<h3>
|
|
<%=title%>
|
|
</h3>
|
|
<%}%>
|
|
<% page.posts.each(function(article) { %>
|
|
<section>
|
|
<a href="<%=url_for(article.path)%>">
|
|
<%=article.title || __('no-title')%>
|
|
</a>
|
|
<time class="post-date" datetime="<%=date_xml(article.date)%>">
|
|
<%=date(article.date)%>
|
|
</time>
|
|
</section>
|
|
<% }) %>
|
|
</article>
|
|
<%-partial('partials/pagination')%>
|
|
</div>
|
|
<%if(theme.sidebar&&theme.widgets.length){%>
|
|
<aside>
|
|
<%- partial('partials/widgets') %>
|
|
</aside>
|
|
<%}%>
|
|
</div>
|