From e0dde25b00f86334e3878c1927ed4dea24ad3b2a Mon Sep 17 00:00:00 2001 From: s5260822 Date: Tue, 18 Mar 2025 20:36:38 +0100 Subject: [PATCH] added other freemarker templates --- src/main/resources/templates/about.ftl | 6 ++++++ src/main/resources/templates/footer.ftl | 3 +++ src/main/resources/templates/header.ftl | 11 +++++++++++ src/main/resources/templates/home.ftl | 6 ++++++ 4 files changed, 26 insertions(+) create mode 100644 src/main/resources/templates/about.ftl create mode 100644 src/main/resources/templates/footer.ftl create mode 100644 src/main/resources/templates/header.ftl create mode 100644 src/main/resources/templates/home.ftl diff --git a/src/main/resources/templates/about.ftl b/src/main/resources/templates/about.ftl new file mode 100644 index 0000000..afd5250 --- /dev/null +++ b/src/main/resources/templates/about.ftl @@ -0,0 +1,6 @@ + + + +<#include "header.ftl"> +

About

+<#include "footer.ftl"> \ No newline at end of file diff --git a/src/main/resources/templates/footer.ftl b/src/main/resources/templates/footer.ftl new file mode 100644 index 0000000..a25c528 --- /dev/null +++ b/src/main/resources/templates/footer.ftl @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/src/main/resources/templates/header.ftl b/src/main/resources/templates/header.ftl new file mode 100644 index 0000000..2070c0c --- /dev/null +++ b/src/main/resources/templates/header.ftl @@ -0,0 +1,11 @@ +
+

Multimodal Parliament Explorer

+ +
\ No newline at end of file diff --git a/src/main/resources/templates/home.ftl b/src/main/resources/templates/home.ftl new file mode 100644 index 0000000..b287e4e --- /dev/null +++ b/src/main/resources/templates/home.ftl @@ -0,0 +1,6 @@ + + + +<#include "header.ftl"> + +<#include "footer.ftl"> \ No newline at end of file