Packages

Blaze is a Serum theme which which builds a Blaze outlook.

Current section

Files

Jump to
serum_theme_blaze priv templates list.html.eex
Raw

priv/templates/list.html.eex

<article class="list">
<header><h1><%= @page.title %></h1></header>
<div>
<ul>
<%= for x <- @page.posts do %>
<li class="article">
<h2>
<a href="<%= x.url %>"><%= x.title %></a><br>
</h2>
<p class="post-date">
<%= x.date %>
<%= unless Enum.empty? x.tags do %>
<span class="tags">
Tags:
<%= for t <- x.tags do %>
<a class="tag" href="<%= t.list_url %>"><%= t.name %></a>
<% end %>
</span>
<% end %>
</p>
<p class="post-preview"><%= x.preview %></p>
</li>
<% end %>
</ul>
</div>
<%= include "pagination" %>
</article>