{% set projects_section = get_section(path="projekte/_index.md") %} <section class="section"> <div class="container"> <h2 class="title is-2">{{ section.extra.headlines.projects }}</h2> <div class="columns"> {% for project_section_path in projects_section.subsections %} {% set project_section = get_section(path=project_section_path) %} <div class="column"> <div class="card is-shadowless"> <div class="columns is-centered"> <figure class="image is-70p"> <a href="{{ project_section.permalink }}"><img src="{{ project_section.extra.title_icon }}" alt="Logo {{ project_section.title }}" /></a> </figure> </div> </div> <div class="card-content"> <div class="media"> <div class="media-content"> <a href="{{ project_section.permalink }}"><h3 class="title is-3">{{ project_section.title }}</h3></a> </div> </div> <div class="content"> {{ project_section.description }} <ul> {% for thesis in project_section.extra.theses %} <li>{{ thesis }}</li> {% endfor %} </ul> </div> </div> </div> {% endfor %} </div> </div> </section>