basic website, basic templating
This commit is contained in:
3
templates/_footer.tpl
Normal file
3
templates/_footer.tpl
Normal file
@ -0,0 +1,3 @@
|
||||
<!-- mind the javascript -->
|
||||
</body>
|
||||
</html>
|
5
templates/_header.tpl
Normal file
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
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' %}
|
Reference in New Issue
Block a user