mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-28 13:31:06 +00:00
5487854a6c
Added new ISO country code flag icons to asset pipeline Lots and lots of new style changes Began converting to JS to coffeescript
11 lines
320 B
Text
11 lines
320 B
Text
<div id="news">
|
|
<% @news.each do |item| %>
|
|
<%= render partial: "article", locals: { article: item } %>
|
|
<% end %>
|
|
</div>
|
|
|
|
<%= link_to t('news.archive'), '/news/archive', class: "button" %>
|
|
|
|
<% if cuser and cuser.admin? %>
|
|
<%= link_to t('helpers.submit.post.new'), new_article_path, class: "button" %>
|
|
<% end %>
|