11 lines
320 B
Plaintext
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>
|
||
|
<% } %>
|