added other freemarker templates
This commit is contained in:
parent
32a3823e79
commit
e0dde25b00
4 changed files with 26 additions and 0 deletions
6
src/main/resources/templates/about.ftl
Normal file
6
src/main/resources/templates/about.ftl
Normal file
|
@ -0,0 +1,6 @@
|
|||
<head>
|
||||
<link rel="stylesheet" href="index.css">
|
||||
</head>
|
||||
<#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>
|
11
src/main/resources/templates/header.ftl
Normal file
11
src/main/resources/templates/header.ftl
Normal file
|
@ -0,0 +1,11 @@
|
|||
<header>
|
||||
<h1 style="margin-bottom: 0">Multimodal Parliament Explorer</h1>
|
||||
<nav>
|
||||
<p></p>
|
||||
<a href="/">Home</a>
|
||||
<a href="/members">Members</a>
|
||||
<a href="/export">Export</a>
|
||||
<a href="/about">About</a>
|
||||
<p></p>
|
||||
</nav>
|
||||
</header>
|
6
src/main/resources/templates/home.ftl
Normal file
6
src/main/resources/templates/home.ftl
Normal file
|
@ -0,0 +1,6 @@
|
|||
<head>
|
||||
<link rel="stylesheet" href="index.css">
|
||||
</head>
|
||||
<#include "header.ftl">
|
||||
|
||||
<#include "footer.ftl">
|
Loading…
Add table
Add a link
Reference in a new issue