From a1075c79e314c10a669dd8fa11d2c1e4d59caf8f Mon Sep 17 00:00:00 2001 From: Dominik George <dominik.george@teckids.org> Date: Sun, 11 Jun 2023 16:05:44 +0200 Subject: [PATCH] Create files for front page blocks --- templates/frontpage/blocks/claim.html | 0 templates/frontpage/blocks/events.html | 0 templates/frontpage/blocks/news.html | 0 templates/frontpage/blocks/projects.html | 0 templates/index.html | 4 ++++ 5 files changed, 4 insertions(+) create mode 100644 templates/frontpage/blocks/claim.html create mode 100644 templates/frontpage/blocks/events.html create mode 100644 templates/frontpage/blocks/news.html create mode 100644 templates/frontpage/blocks/projects.html diff --git a/templates/frontpage/blocks/claim.html b/templates/frontpage/blocks/claim.html new file mode 100644 index 00000000..e69de29b diff --git a/templates/frontpage/blocks/events.html b/templates/frontpage/blocks/events.html new file mode 100644 index 00000000..e69de29b diff --git a/templates/frontpage/blocks/news.html b/templates/frontpage/blocks/news.html new file mode 100644 index 00000000..e69de29b diff --git a/templates/frontpage/blocks/projects.html b/templates/frontpage/blocks/projects.html new file mode 100644 index 00000000..e69de29b diff --git a/templates/index.html b/templates/index.html index a9c0401f..946f249f 100644 --- a/templates/index.html +++ b/templates/index.html @@ -1,4 +1,8 @@ {% extends "base.html" %} {% block main %} + {% include "frontpage/blocks/claim.html" %} + {% include "frontpage/blocks/news.html" %} + {% include "frontpage/blocks/projects.html" %} + {% include "frontpage/blocks/events.html" %} {% endblock %} -- GitLab