0
0
Fork 0
mirror of https://github.com/ENSL/ensl.org.git synced 2025-01-26 19:20:59 +00:00
ensl.org/app/views/widgets/_interviews.html.erb

12 lines
274 B
Text

<p class="bold">
Newest interviews
</p>
<ul>
<% Article.nodrafts.interviews.recent.each do |article| %>
<li class="<%= 'bold' if cuser and !article.read_by? cuser %>">
<%= namelink article %>
</li>
<% end %>
</ul>
<%= link_to "More..", articles_path %>