32 lines
925 B
Plaintext
32 lines
925 B
Plaintext
<%- include('_header') -%>
|
|
|
|
<!-- Primary Page Layout
|
|
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
|
<%- include('_search') %>
|
|
|
|
<section id="search-results" style="margin-top: 5%" >
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="two columns" >
|
|
<h4><%- category %></h4>
|
|
</div>
|
|
<div class="ten columns" >
|
|
<% let last = '' %>
|
|
<% articles.forEach((art) => { %>
|
|
<% if (last != art.month) { %>
|
|
<h4><%- art.month %></h4>
|
|
<% last = art.month %>
|
|
<% } %>
|
|
<div class="article-link">
|
|
<h6><a href="https://dailystormer.su<%- art.slug %>"><%- art.title %></a> by <%- art.author %></h6>
|
|
</div>
|
|
<% }); %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<%- include('_pagination') %>
|
|
|
|
<%- include('_footer') -%>
|