mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-03-25 09:05:47 +00:00
9 lines
248 B
Text
9 lines
248 B
Text
<ul id="index">
|
|
<% for (var slug in public.posts._data) { %>
|
|
<% var post = public.posts._data[slug]; %>
|
|
<li>
|
|
<span class="date"><%= post.date %></span>
|
|
<a href="<%= post.url %>"><%= post.title %></a>
|
|
</li>
|
|
<% } %>
|
|
</ul>
|