added basic ftl structure
This commit is contained in:
parent
8a9fbdfc37
commit
f24405a06b
4 changed files with 19 additions and 0 deletions
3
src/main/resources/templates/about.ftl
Normal file
3
src/main/resources/templates/about.ftl
Normal file
|
@ -0,0 +1,3 @@
|
|||
<#include "header.ftl">
|
||||
<h1>About</h1>
|
||||
<#include "footer.ftl">
|
3
src/main/resources/templates/footer.ftl
Normal file
3
src/main/resources/templates/footer.ftl
Normal file
|
@ -0,0 +1,3 @@
|
|||
<footer>
|
||||
<p>© PPR WS24/25 - Gruppe_05_1</p>
|
||||
</footer>
|
10
src/main/resources/templates/header.ftl
Normal file
10
src/main/resources/templates/header.ftl
Normal 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>
|
3
src/main/resources/templates/home.ftl
Normal file
3
src/main/resources/templates/home.ftl
Normal file
|
@ -0,0 +1,3 @@
|
|||
<#include "header.ftl">
|
||||
|
||||
<#include "footer.ftl">
|
Loading…
Add table
Add a link
Reference in a new issue