mirror of
https://github.com/wezm/wezm.net.git
synced 2024-11-10 01:42:32 +00:00
12 lines
433 B
HTML
12 lines
433 B
HTML
<% post_date = WezM::Helpers.post_date(@article) %>
|
|
<li>
|
|
<abbr class="calender date" title="<%= post_date.iso8601 %>">
|
|
<span class="day"><%= post_date.day %></span>
|
|
<span class="month"><%= post_date.strftime('%b') %></span>
|
|
<span class="year"><%= post_date.year %></span>
|
|
</abbr>
|
|
<p>
|
|
<strong><a href="<%= @article.reps.first.path %>"><%= @article[:title] %></a></strong>
|
|
<%= @item[:summary] %>
|
|
</p>
|
|
</li>
|