46 lines
1.2 KiB
Text
46 lines
1.2 KiB
Text
<div class="head">
|
|
<%= breadcrumbs_html(%{:trail => @breadcrumbs}) %>
|
|
<h1>
|
|
<%= @page_title %>
|
|
</h1>
|
|
<p>
|
|
Inlägg skrivna sedan 2006.
|
|
<%= if @nosearch? do %>
|
|
Gå direkt till:
|
|
<% end %>
|
|
</p>
|
|
<ul class="months">
|
|
<%= for {year, articles} <- @articles do %>
|
|
<li>
|
|
<a href={"#y" <> year}><%= year %></a> (<%= Enum.count(articles) %>)
|
|
</li>
|
|
<% end %>
|
|
</ul>
|
|
<form method="get" action="/webblogg">
|
|
<p>
|
|
<%= if @nosearch? do %>
|
|
Eller
|
|
<% end %>
|
|
<label for="q">sök innehåll</label>:
|
|
<input type="search" value={@q} name="q" id="q" size="7" />
|
|
<button>Sök</button>
|
|
</p>
|
|
</form>
|
|
</div>
|
|
<div class="cards">
|
|
<%= for {year, articles} <- @articles do %>
|
|
<section class="card" id={"y" <> year}>
|
|
<h2 class="sticky vert"><%= year %></h2>
|
|
<div class="articles">
|
|
<%= for article <- articles do %>
|
|
<article class="article" vocab="https://schema.org/" typeof="Article">
|
|
<time><%= article["pubDate"] %></time>
|
|
<h3 property="name">
|
|
<a href={"/" <> article["slug"]}><%= article["title"] %></a>
|
|
</h3>
|
|
</article>
|
|
<% end %>
|
|
</div>
|
|
</section>
|
|
<% end %>
|
|
</div>
|