Skip to content
Snippets Groups Projects
projects.html 1.27 KiB
Newer Older
{% 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">
Nik | Klampfradler's avatar
Nik | Klampfradler committed
              <a href="{{ project_section.permalink }}"><img src="{{ project_section.extra.title_icon }}" alt="Logo {{ project_section.title }}" /></a>
            </figure>
          </div>
        <div class="card-content">
          <div class="media">
            <div class="media-content">
Nik | Klampfradler's avatar
Nik | Klampfradler committed
              <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>
</section>