diff --git a/content/projekte/hack-n-fun/_index.md b/content/projekte/hack-n-fun/_index.md
new file mode 100644
index 0000000000000000000000000000000000000000..44ad8a755d9b482602023db526fe328e2aeaa982
--- /dev/null
+++ b/content/projekte/hack-n-fun/_index.md
@@ -0,0 +1,4 @@
++++
+title = "Hack'n'Fun"
+description = "Technik gemeinsam ausprobieren und verstehen"
++++
diff --git a/content/projekte/indiedact/_index.md b/content/projekte/indiedact/_index.md
new file mode 100644
index 0000000000000000000000000000000000000000..3bc45624dc23877735e77299fb4cd44c7f142923
--- /dev/null
+++ b/content/projekte/indiedact/_index.md
@@ -0,0 +1,4 @@
++++
+title = "Indiedact"
+description = "Partizipatives Lernen für alle"
++++
diff --git a/content/projekte/schul-frei/_index.md b/content/projekte/schul-frei/_index.md
new file mode 100644
index 0000000000000000000000000000000000000000..90c3c9b0953e72b9827d3bd228fe7a13cfe454ed
--- /dev/null
+++ b/content/projekte/schul-frei/_index.md
@@ -0,0 +1,4 @@
++++
+title = "schul-frei"
+description = "Verstehbare digitale Werkzeug für Bildungseinrichtungen"
++++
diff --git a/sass/_menu.scss b/sass/_menu.scss
index 61f55717b8f890fb760a168551a9a1b8f88609b3..0a433deb0e45de84639343d46a0f399eb58a2137 100644
--- a/sass/_menu.scss
+++ b/sass/_menu.scss
@@ -30,5 +30,5 @@
 }
 
 .navbar-dropdown.wide-dropdown {
-    width: 100%;
+    width: 100vw;
 }
diff --git a/templates/menu/projects.html b/templates/menu/projects.html
index 3bcbe6d6d8c47143f8b3df62d456ab2488af4865..fbdbe394bfc4f052d71f7a37c42d0a18df3ec35d 100644
--- a/templates/menu/projects.html
+++ b/templates/menu/projects.html
@@ -2,12 +2,14 @@
 
 {% for project in projects.items %}
 <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>
   <h2 class="subtitle">{{ section.description }}</h2>
 
   {% for page in project.pages %}
-    <a href="{{ page.permalink }}">{{ page.title }}</a>
+    <ul>
+      <li><a href="{{ page.permalink }}">{{ page.title }}</a></li>
+    </ul>
   {% endfor %}
 </section>
 {% endfor %}
\ No newline at end of file