zeus.ugent.be/layouts/blogpost.erb

21 lines
400 B
Plaintext
Raw Normal View History

2016-10-11 13:11:18 +00:00
<h1 class="title is-1 has-text-centered">
<%= item[:title] %>
</h1>
<% if item[:author] %>
<h2 class="subtitle is-3 has-text-centered">
2016-10-31 15:53:19 +00:00
<% if item[:lang] == :en %>
by
<% else %>
door
<% end %>
2016-10-11 13:11:18 +00:00
<%= item[:author] %>
</h2>
<% end %>
2016-10-31 15:53:19 +00:00
<div class="content columns">
<div class="column is-2"></div>
<main class="column">
2016-08-23 18:21:02 +00:00
<%= yield %>
</main>
2016-10-31 15:53:19 +00:00
<div class="column is-2"></div>
2016-08-23 18:21:02 +00:00
</div>