2014-05-02 08:27:18 +00:00
|
|
|
<% provide :main_class, 'no-body' %>
|
|
|
|
|
2014-05-09 21:38:14 +00:00
|
|
|
<div id="news" class="index">
|
2014-04-29 20:02:20 +00:00
|
|
|
<% @news.each_with_index do |item, i| %>
|
2014-05-02 08:27:18 +00:00
|
|
|
<%= render partial: 'preview', locals: { article: item, full: (true if i == 0) } %>
|
2014-03-23 00:22:25 +00:00
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
|
2014-04-09 20:44:04 +00:00
|
|
|
<div class="actions-bottom">
|
2014-04-29 20:02:20 +00:00
|
|
|
<%= link_to t('news.archive'), '/news/archive', class: 'button' %>
|
2014-03-23 00:22:25 +00:00
|
|
|
|
2014-04-09 20:44:04 +00:00
|
|
|
<% if cuser and cuser.admin? %>
|
|
|
|
<%= link_to t('helpers.submit.post.new'), new_article_path, class: "button" %>
|
|
|
|
<% end %>
|
|
|
|
</div>
|