Added initialisation and normal run

This commit is contained in:
Deon George
2018-03-08 15:33:23 +11:00
parent e98f6a06fb
commit ab61ea9435
5 changed files with 156 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
<% 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>
<% } %>