Skip to content
Snippets Groups Projects
Verified Commit 24a5f7c2 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Add first menu styling draft for projects

parent 4c21a322
No related branches found
No related tags found
1 merge request!28Neue Website basierend auf Zola
+++
title = "Hack'n'Fun"
description = "Technik gemeinsam ausprobieren und verstehen"
+++
+++
title = "Indiedact"
description = "Partizipatives Lernen für alle"
+++
+++
title = "schul-frei"
description = "Verstehbare digitale Werkzeug für Bildungseinrichtungen"
+++
...@@ -30,5 +30,5 @@ ...@@ -30,5 +30,5 @@
} }
.navbar-dropdown.wide-dropdown { .navbar-dropdown.wide-dropdown {
width: 100%; width: 100vw;
} }
...@@ -2,12 +2,14 @@ ...@@ -2,12 +2,14 @@
{% for project in projects.items %} {% for project in projects.items %}
<section class="section menu-project-section" id="menu-project-section-{{ project.slug }}"> <section class="section menu-project-section" id="menu-project-section-{{ project.slug }}">
{% set section = get_section(path = project.slug ~ "/_index.md") %} {% set section = get_section(path = "projekte/" ~ project.slug ~ "/_index.md") %}
<h1 class="title">{{ section.title }}</h1> <h1 class="title">{{ section.title }}</h1>
<h2 class="subtitle">{{ section.description }}</h2> <h2 class="subtitle">{{ section.description }}</h2>
{% for page in project.pages %} {% for page in project.pages %}
<a href="{{ page.permalink }}">{{ page.title }}</a> <ul>
<li><a href="{{ page.permalink }}">{{ page.title }}</a></li>
</ul>
{% endfor %} {% endfor %}
</section> </section>
{% endfor %} {% endfor %}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment