mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-03-25 09:05:47 +00:00
35 lines
769 B
Text
35 lines
769 B
Text
<% var posts = public._data.posts -%>
|
|
<% for (var i in posts) { -%>
|
|
|
|
<% var post = posts[i] -%>
|
|
|
|
<% if (post.link) { -%>
|
|
|
|
<article>
|
|
<header>
|
|
<h2><a href="<%= post.link %>"><%= post.title %></a></h2>
|
|
<time><%= post.date %></time>
|
|
</header>
|
|
<%- partial(post.url) %>
|
|
<p><a class="permalink" href="<%= post.url %>">∞</a></p>
|
|
</article>
|
|
|
|
<% } else { -%>
|
|
|
|
<article>
|
|
<header>
|
|
<h2><a href="<%= post.url %>"><%= post.title %></a></h2>
|
|
<time><%= post.date %></time>
|
|
</header>
|
|
<%- partial(post.url) %>
|
|
</article>
|
|
|
|
<% } -%>
|
|
|
|
<% if (i < posts.length - 1) { -%>
|
|
<div class="row clearfix">
|
|
<p class="fin"><i class="fa fa-code"></i></p>
|
|
</div>
|
|
<% } -%>
|
|
|
|
<% } -%>
|