zeus.ugent.be/layouts/partials/_tile.erb

24 lines
582 B
Plaintext
Raw Normal View History

2017-02-07 22:30:11 +00:00
<a href="<%= relative_path_to(@article) %>" class="tile is-child box <%= @htmlclass %>"
style="background-image:url('<%=@article[:banner]%>');">
<div class="content" >
2016-10-03 14:56:56 +00:00
<div class="columns">
<div class="column">
<h2>
<%= @article[:title] %>
</h2>
</div>
<div class="column is-narrow">
<small>
<%= @small_text %>
</small>
2016-08-23 18:21:02 +00:00
</div>
</div>
2017-02-07 22:30:11 +00:00
<div class="description">
2016-10-03 14:56:56 +00:00
<%= @article[:description] %>
2017-02-07 22:30:11 +00:00
</div>
<div class="teaser">
<%= get_teaser(@article) %>
</div>
2016-07-18 14:31:45 +00:00
</div>
</a>