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