zeus.ugent.be/layouts/generic.erb

19 lines
358 B
Text
Raw Normal View History

2016-07-27 20:27:28 +02:00
<div class="container">
<header class="section">
<%= render '/partials/_navbar.*' %>
</header>
<main class="section">
2016-12-12 14:40:42 +01:00
<% if item[:narrow_page] %>
<div class="columns">
<article class="column is-8 is-offset-2">
<% end %>
2017-04-21 14:37:31 +02:00
<%= yield %>
2016-12-12 14:40:42 +01:00
<% if item[:narrow_page] %>
2017-04-21 14:37:31 +02:00
</article>
</div>
2016-12-12 14:40:42 +01:00
<% end %>
2016-07-27 20:27:28 +02:00
</main>
2016-07-23 21:17:24 +02:00
</div>