zeus.ugent.be/content/index.erb

17 lines
467 B
Text
Raw Normal View History

2016-07-27 20:27:28 +02:00
<div class="tile is-vertical is-ancestor">
<div class="tile is-parent is-12">
<div class="tile is-child box">
<%= render '/partials/_tile.*', article: sorted_articles[0] %>
</div>
</div>
<div class="tile">
2016-07-23 21:17:24 +02:00
<% sorted_articles[1..-1].each do |article| %>
2016-07-27 20:27:28 +02:00
<div class="tile is-parent is-4">
<div class="tile is-child box">
<%= render '/partials/_tile.*', article: article %>
</div>
2016-07-23 21:17:24 +02:00
</div>
<% end %>
2016-06-18 01:43:41 +02:00
</div>
2016-07-05 22:13:14 +02:00
</div>