From c07f98ccfb58bd1bb6d2d851b9638bc6d55710e8 Mon Sep 17 00:00:00 2001
From: Darius Auding <Darius.auding@gmx.de>
Date: Thu, 3 Aug 2023 12:02:53 +0200
Subject: [PATCH] Add the content for the `project.html` template

---
 templates/project.html | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/templates/project.html b/templates/project.html
index 72d1c8b1..a66d8bc0 100644
--- a/templates/project.html
+++ b/templates/project.html
@@ -18,10 +18,17 @@
     <div class="container">
       <div class="columns">
         <div class="column is-two-fifth project-title">
-          <h1>{{ section.title }}</h1>
-          <p>
+          <h1 class="title is-1">{{ section.title }}</h1>
+          <p class="title is-5">
             {{ section.description }}
           </p>
+          <div class="content">
+              {% if section.content %}
+                {{ section.content | safe }}
+              {% else %}
+                {% include "baustelle.html" %}
+              {% endif %}
+          </div>
         </div>
         <div class="column project-theses">
           {% for thesis in section.extra.theses %}
-- 
GitLab