2017-06-07 10:23:02 +02:00
|
|
|
<div class="columns">
|
|
|
|
<div class="column is-2 is-narrow">
|
|
|
|
<aside class="menu">
|
|
|
|
<p class="menu-label">
|
|
|
|
Academiejaar
|
|
|
|
</p>
|
|
|
|
<ul class="menu-list">
|
|
|
|
<% academic_years_event_items.each do |year, item| %>
|
|
|
|
<% if @item_rep && @item_rep.path == item.path %>
|
|
|
|
<li>
|
|
|
|
<a href="#" class="is-active">
|
|
|
|
<%= pretty_year(year) %>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<% else %>
|
|
|
|
<li>
|
|
|
|
<%= link_to pretty_year(year), item %>
|
|
|
|
</li>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
</ul>
|
2020-10-13 12:01:47 +02:00
|
|
|
<p class="menu-label">
|
|
|
|
Tag
|
|
|
|
</p>
|
|
|
|
<ul class="menu-list">
|
|
|
|
<% tag_event_items.each do |tag, item| %>
|
|
|
|
<% if @item_rep && @item_rep.path == item.path %>
|
|
|
|
<li>
|
|
|
|
<a href="#" class="is-active">
|
|
|
|
<%= tag %>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<% else %>
|
|
|
|
<li>
|
|
|
|
<%= link_to tag, item %>
|
|
|
|
</li>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
</ul>
|
2017-06-07 10:23:02 +02:00
|
|
|
</aside>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="column">
|
2020-10-13 12:01:47 +02:00
|
|
|
<% unless upcoming_events_in_year_or_tag(@item).empty? %>
|
2017-06-07 10:23:02 +02:00
|
|
|
<div class="content">
|
|
|
|
<h1>Upcoming events</h1>
|
|
|
|
</div>
|
2020-10-13 12:01:47 +02:00
|
|
|
<% upcoming_events_in_year_or_tag(@item).each_slice(1) do |slice| %>
|
2017-06-07 10:23:02 +02:00
|
|
|
<div class="columns">
|
|
|
|
<% slice.each do |event| %>
|
|
|
|
<div class="tile is-parent ">
|
|
|
|
<%= render '/partials/_events_tile.*', event: event %>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
|
2020-10-13 12:01:47 +02:00
|
|
|
<% unless past_events_in_year_or_tag(@item).empty? %>
|
2017-06-07 10:23:02 +02:00
|
|
|
<div class="content">
|
|
|
|
<h1>Past events</h1>
|
|
|
|
</div>
|
2020-10-13 12:01:47 +02:00
|
|
|
<% past_events_in_year_or_tag(@item).each_slice(1) do |slice| %>
|
2017-06-07 10:23:02 +02:00
|
|
|
<div class="columns">
|
|
|
|
<% slice.each do |event| %>
|
|
|
|
<div class="tile is-parent ">
|
|
|
|
<%= render '/partials/_events_tile.*', event: event %>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
2019-08-17 15:09:27 +02:00
|
|
|
|
2020-10-13 12:01:47 +02:00
|
|
|
<% if past_events_in_year_or_tag(@item).empty? and upcoming_events_in_year_or_tag(@item).empty? %>
|
2019-08-17 15:09:27 +02:00
|
|
|
<div class="content has-text-centered">
|
|
|
|
<h1>Sorry.</h1>
|
|
|
|
<h2>No events planned yet this year.</h2>
|
2020-01-13 14:31:30 +01:00
|
|
|
<h4 class="has-text-grey"><em>Soon™.</em></h4>
|
2019-08-17 15:09:27 +02:00
|
|
|
</div>
|
|
|
|
<% end %>
|
2017-06-07 10:23:02 +02:00
|
|
|
</div>
|
2019-12-06 20:37:33 +01:00
|
|
|
|
2020-01-13 14:31:30 +01:00
|
|
|
<% unless soon_events.empty? %>
|
2019-12-06 20:37:33 +01:00
|
|
|
<div class="column is-3 is-narrow">
|
2019-12-06 22:14:02 +01:00
|
|
|
<div class="menu">
|
|
|
|
<div class="content">
|
|
|
|
<h1>
|
2020-01-13 14:31:30 +01:00
|
|
|
Soon™
|
2019-12-06 22:14:02 +01:00
|
|
|
</h1>
|
|
|
|
</div>
|
2020-01-13 14:31:30 +01:00
|
|
|
<% soon_events.each do |event| %>
|
|
|
|
<%= render '/partials/_soon_tile.*', event: event %>
|
|
|
|
<% end %>
|
2019-12-06 22:14:02 +01:00
|
|
|
</div>
|
2019-12-06 20:37:33 +01:00
|
|
|
</div>
|
|
|
|
<% end %>
|
2017-06-07 10:23:02 +02:00
|
|
|
</div>
|