From aeb2bb274a8096d8c0e4eee128034720c6ebcb77 Mon Sep 17 00:00:00 2001 From: Dominik George <dominik.george@teckids.org> Date: Tue, 13 Jun 2023 21:24:01 +0200 Subject: [PATCH] Swap projects and news --- templates/frontpage/blocks/news.html | 2 +- templates/frontpage/blocks/projects.html | 2 +- templates/index.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/frontpage/blocks/news.html b/templates/frontpage/blocks/news.html index 056ffb66..dc318fa1 100644 --- a/templates/frontpage/blocks/news.html +++ b/templates/frontpage/blocks/news.html @@ -1,4 +1,4 @@ -<section class="section"> +<section class="section has-teckids-blue-light-bg"> <div class="container"> <div class="columns is-centered is-half"> <h1 class="title is-1">{{ section.extra.headlines.news }}</h1> diff --git a/templates/frontpage/blocks/projects.html b/templates/frontpage/blocks/projects.html index 794642df..9c93a546 100644 --- a/templates/frontpage/blocks/projects.html +++ b/templates/frontpage/blocks/projects.html @@ -1,6 +1,6 @@ {% set projects_section = get_section(path="projekte/_index.md") %} -<section class="section has-teckids-blue-light-bg"> +<section class="section"> <div class="container"> <div class="columns is-centered is-half"> <h1 class="title is-1">{{ section.extra.headlines.projects }}</h1> diff --git a/templates/index.html b/templates/index.html index 946f249f..3769d8b4 100644 --- a/templates/index.html +++ b/templates/index.html @@ -2,7 +2,7 @@ {% block main %} {% include "frontpage/blocks/claim.html" %} - {% include "frontpage/blocks/news.html" %} {% include "frontpage/blocks/projects.html" %} + {% include "frontpage/blocks/news.html" %} {% include "frontpage/blocks/events.html" %} {% endblock %} -- GitLab