Use image_tag function in 'ontdek verenigingen' page

This commit is contained in:
mcbloch 2020-08-29 16:02:38 +02:00
parent cb285c2f1e
commit 4945b78af5

View file

@ -3,7 +3,7 @@
<h1> Thema's </h1> <h1> Thema's </h1>
<ul> <ul>
<% for thema in themas %> <% for thema in themas %>
<img src="<%= image_url(thema) %>" alt="<%= thema[:naam] %>"> <%= image_tag thema %>
<li> <%= link_to(thema[:naam], thema) %> </li> <li> <%= link_to(thema[:naam], thema) %> </li>
<% end %> <% end %>
</ul> </ul>
@ -12,7 +12,7 @@
<h1> Konventen en projecten </h1> <h1> Konventen en projecten </h1>
<ul> <ul>
<% for item in konventen_and_projecten %> <% for item in konventen_and_projecten %>
<img src="<%= image_url(item) %>" alt="<%= item[:naam] %>"> <%= image_tag item %>
<li> <%= link_to(item[:naam], item) %> </li> <li> <%= link_to(item[:naam], item) %> </li>
<% end %> <% end %>
</ul> </ul>