22 lines
652 B
Plaintext
22 lines
652 B
Plaintext
<%- include('_header') -%>
|
|
|
|
<!-- Primary Page Layout
|
|
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
|
|
<%- include('_search') %>
|
|
|
|
<section id="search-results" style="margin-top: 5%" >
|
|
<div class="container">
|
|
<% results.forEach((r) => { %>
|
|
<div class="row">
|
|
<h5><a href="https://<%- config.domain %><%- r.slug %>"><%- r.title %></a></h5>
|
|
<div class="author"><b><%- r.author %></b></div>
|
|
<p><%- r.snippet %></p>
|
|
</div>
|
|
<% }); %>
|
|
</div>
|
|
</section>
|
|
|
|
<%- include('_pagination') %>
|
|
|
|
<%- include('_footer') -%>
|