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

33 lines
1.1 KiB
Plaintext
Raw Normal View History

2017-02-16 15:04:00 +00:00
<% if @event[:banner] %>
<a href="<%= @event.path %>" class="tile is-child box backgroundimg highlighted"
style="background-image:url('<%= @event[:banner] %>');">
<% elsif @event[:color] %>
<a href="<%= @event.path %>" class="tile is-child box backgroundimg highlighted"
style="background-image: linear-gradient(to top right,rgba(255,255,255,0),rgba(0,0,0,.60)); background-color:<%= @event[:color] %>;">
<% else %>
2017-02-16 15:04:00 +00:00
<a href="<%= @event.path %>" class="tile is-child box backgroundimg">
<% end %>
<div class="content">
2017-10-10 22:33:37 +00:00
<div class="columns events-tile">
<div class="column">
<h2>
2017-02-16 15:04:00 +00:00
<%= @event[:title] %>
</h2>
</div>
<div class="column is-narrow">
<small>
2017-10-10 22:33:37 +00:00
<%= fa :'clock-o' , fw: true %><%= @event[:time].strftime('%A %d %B %Y %H:%M') %>
<br>
2017-10-10 22:33:37 +00:00
<%= fa :'map-marker', fw: true %><%= @event[:location] %>
</small>
</div>
</div>
<div class="description">
2017-02-16 15:04:00 +00:00
<%= @event[:description] %>
</div>
<div class="teaser">
2017-02-16 15:04:00 +00:00
<%= get_teaser(@event) %>
</div>
</div>
</a>