mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-04-04 10:35:46 +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>
|