mirror of
https://github.com/ENSL/ensl.org.git
synced 2025-01-03 16:31:22 +00:00
12ed7c90ae
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 %>
|