From d44a26c529a3d499634a7af56ebcb483b3f56aa2 Mon Sep 17 00:00:00 2001 From: Dominik George <dominik.george@teckids.org> Date: Sun, 24 Mar 2024 00:23:24 +0100 Subject: [PATCH] Remove unnecessary subdirectory for frontpage templates --- templates/frontpage/{blocks => }/blog.html | 0 templates/frontpage/{blocks => }/claim.html | 0 templates/frontpage/{blocks => }/projects.html | 0 templates/index.html | 6 +++--- 4 files changed, 3 insertions(+), 3 deletions(-) rename templates/frontpage/{blocks => }/blog.html (100%) rename templates/frontpage/{blocks => }/claim.html (100%) rename templates/frontpage/{blocks => }/projects.html (100%) diff --git a/templates/frontpage/blocks/blog.html b/templates/frontpage/blog.html similarity index 100% rename from templates/frontpage/blocks/blog.html rename to templates/frontpage/blog.html diff --git a/templates/frontpage/blocks/claim.html b/templates/frontpage/claim.html similarity index 100% rename from templates/frontpage/blocks/claim.html rename to templates/frontpage/claim.html diff --git a/templates/frontpage/blocks/projects.html b/templates/frontpage/projects.html similarity index 100% rename from templates/frontpage/blocks/projects.html rename to templates/frontpage/projects.html diff --git a/templates/index.html b/templates/index.html index 07e3d367..c36fafdf 100644 --- a/templates/index.html +++ b/templates/index.html @@ -3,7 +3,7 @@ {% block og_type %}website{% endblock %} {% block main %} - {% include "frontpage/blocks/claim.html" %} - {% include "frontpage/blocks/projects.html" %} - {% include "frontpage/blocks/blog.html" %} + {% include "frontpage/claim.html" %} + {% include "frontpage/projects.html" %} + {% include "frontpage/blog.html" %} {% endblock %} -- GitLab