silvrgit/views/partials/history.ejs
martind2000 3e1087fd70 init
2016-03-08 21:52:21 +00:00

15 lines
294 B
Plaintext

<% if (data.history.length > 0 ) {%>
<div id="container" class="mui-panel">
<h2>Today in history</h2>
<div class="mui-row"><div class="mui-col-md-12">
<%
for (var i = 0; i < data.history.length; i++) { %>
<p><%- data.history[i] %></p>
<% } %>
</div></div>
</div>
<% } %>