31 lines
851 B
Text
31 lines
851 B
Text
<div>
|
|
<%# <div class="horz-child">
|
|
<h1> Thema's </h1>
|
|
<ul>
|
|
<% for thema in themas %>
|
|
<%# <%= image_tag thema %>
|
|
<%#<li> <%= link_to(thema[:naam], thema) %> </li>
|
|
<%# <% end %>
|
|
<%#</ul>
|
|
</div> %>
|
|
<h1> Konventen en projecten </h1>
|
|
<div class="tile-grid">
|
|
<% for item in konventen %>
|
|
<div class="tile" onclick="window.location.href = '<%= item.path %>'">
|
|
<img class="tile__image" src="https://dsa.ugent.be/api/verenigingen/<%= abbreviation(item) %>/logo?size=medium" alt="<%= item[:naam] %>">
|
|
<h3 class="tile__title"> <%= item[:titel] || item[:naam] %> </h3>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
.flex-horz {
|
|
display: flex; /* or inline-flex */
|
|
flex-direction: row;
|
|
}
|
|
.horz-child {
|
|
flex-basis: auto;
|
|
flex-grow: 1;
|
|
}
|
|
</style>
|