summaryrefslogtreecommitdiff
path: root/views/index.html
diff options
context:
space:
mode:
authorLinnnus <[email protected]>2024-03-20 15:17:36 +0100
committerLinnnus <[email protected]>2024-03-20 15:19:40 +0100
commitdb93ff98409fac1c1a3742d0f81484c985d6d55c (patch)
treea32c8eabb86b10588b6da96d124540f02cec2de1 /views/index.html
parent3c1e773f0a91f1a8ef9e637738bb39318ece68f3 (diff)
Add templating engine and index page
Diffstat (limited to 'views/index.html')
-rw-r--r--views/index.html7
1 files changed, 7 insertions, 0 deletions
diff --git a/views/index.html b/views/index.html
new file mode 100644
index 0000000..e98e8e5
--- /dev/null
+++ b/views/index.html
@@ -0,0 +1,7 @@
+{% extends "base.html" %}
+
+{% block content %}
+ <h1>Index</h1>
+ <p class="important">Welcome to my awesome homepage.</p>
+{% endblock %}
+