This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
spdocker/themes/spd/layout/_widget/related-links.ejs
2018-03-08 15:33:23 +11:00

11 lines
320 B
Plaintext

<% if (page.related) { %>
<section class="visible-md visible-lg">
<h5>Related Pages</h5>
<ul style="list-style-type: none; padding-left: 10px;">
<% page.related.map(function(tag){ %>
<li><a href="<%= tag.page %>.html"><%= tag.title %></a></li>
<% }) %>
</ul>
</section>
<% } %>