Fix erb for vereniging without bestuur
This commit is contained in:
parent
5df4ee926d
commit
efa8531395
2 changed files with 4 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
|||
<title> Durf Doen! - <%= item[:titel] || item.identifier.without_ext.split('/').last %> </title>
|
||||
<link rel="stylesheet" href="/stylesheets/main.css">
|
||||
<link rel="shortcut icon" href="/assets/favicon.png">
|
||||
<%= raw item[:head] %>
|
||||
<%# <%= raw item[:head] %>
|
||||
</head>
|
||||
<body>
|
||||
<%= render '/partials/navbar.*' %>
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
<h1> <%= item[:naam] %> </h1>
|
||||
<h2> Het bestuur: </h2>
|
||||
<ul>
|
||||
<% if item[:bestuur] %>
|
||||
<% for persoon in item[:bestuur] %>
|
||||
<li> <%= persoon[:functie] %>: <%= persoon[:naam] %> </li>
|
||||
<% end %>
|
||||
<% end %>
|
||||
</ul>
|
||||
<%= yield %>
|
Loading…
Reference in a new issue