From aa6fbe68c05e11f3704184752ceb2fc7942b1666 Mon Sep 17 00:00:00 2001 From: magicfelix <felix@felix-zauberer.de> Date: Fri, 4 Aug 2023 17:43:23 +0200 Subject: [PATCH] Add Baustellen-section to index page --- templates/frontpage/blocks/baustelle.html | 13 +++++++++++++ templates/index.html | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 templates/frontpage/blocks/baustelle.html diff --git a/templates/frontpage/blocks/baustelle.html b/templates/frontpage/blocks/baustelle.html new file mode 100644 index 00000000..3fffdc0d --- /dev/null +++ b/templates/frontpage/blocks/baustelle.html @@ -0,0 +1,13 @@ +<section + class="hero has-teckids-orange-light-bg" +> + <div class="hero-body"> + <div class="container"> + <div class="columns is-centered is-half"> + <div class="content"> + {% include "baustelle.html" %} + </div> + </div> + </div> + </div> +</section> diff --git a/templates/index.html b/templates/index.html index 4a69ef71..c816ee53 100644 --- a/templates/index.html +++ b/templates/index.html @@ -3,6 +3,6 @@ {% block main %} {% include "frontpage/blocks/claim.html" %} {% include "frontpage/blocks/projects.html" %} - {% include "frontpage/blocks/newsletter.html" %} + {% include "frontpage/blocks/baustelle.html" %} <!-- {% include "frontpage/blocks/news.html" %} --> {% endblock %} -- GitLab