basic website, basic templating

This commit is contained in:
2022-10-21 14:31:48 +02:00
parent 303fc11327
commit fdd24d90da
11 changed files with 196 additions and 0 deletions

3
templates/_footer.tpl Normal file

@ -0,0 +1,3 @@
<!-- mind the javascript -->
</body>
</html>

5
templates/_header.tpl Normal file

@ -0,0 +1,5 @@
<html>
<head>
<title>Address Book</title>
<link rel="stylesheet" href="/assets/styles/main.css">
</head>

8
templates/index.tpl Normal file

@ -0,0 +1,8 @@
{% include '_header.tpl' %}
<h1>Address Book</h1>
<a href="/">🏠 Home</a>
<a href="/">⚙ Admin</a>
<a href="/">🚪 Login</a>
{% include '_footer.tpl' %}