durfdoen-2.0/layouts/vereniging.erb

11 lines
221 B
Text
Raw Normal View History

2020-02-27 16:55:36 +01:00
<h1> <%= item[:naam] %> </h1>
<h2> Het bestuur: </h2>
<ul>
2020-02-27 21:20:57 +01:00
<% if item[:bestuur] %>
2020-02-27 16:55:36 +01:00
<% for persoon in item[:bestuur] %>
<li> <%= persoon[:functie] %>: <%= persoon[:naam] %> </li>
<% end %>
2020-02-27 21:20:57 +01:00
<% end %>
2020-02-27 16:55:36 +01:00
</ul>
2020-02-27 21:20:57 +01:00
<%= yield %>