added basic ftl structure

This commit is contained in:
s5260822 2025-03-18 16:33:03 +01:00
parent 8a9fbdfc37
commit f24405a06b
4 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,3 @@
<#include "header.ftl">
<h1>About</h1>
<#include "footer.ftl">

View file

@ -0,0 +1,3 @@
<footer>
<p>&copy; PPR WS24/25 - Gruppe_05_1</p>
</footer>

View file

@ -0,0 +1,10 @@
<header>
<h1>Multimodal Parliament Explorer</h1>
<nav>
<a href="/">Home</a>
<a href="/speeches">Speeches</a>
<a href="/members">Members</a>
<a href="/export">Export</a>
<a href="/about">About</a>
</nav>
</header>

View file

@ -0,0 +1,3 @@
<#include "header.ftl">
<#include "footer.ftl">