From 00baa0ccc5971b3e579345748dafc59c4b6a9907 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Thu, 3 Jun 2021 22:43:10 +0530 Subject: Added Templates * Contact Us form * Base Index * Flash error template --- app/templates/index.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 app/templates/index.html (limited to 'app/templates/index.html') diff --git a/app/templates/index.html b/app/templates/index.html new file mode 100644 index 0000000..d66ca86 --- /dev/null +++ b/app/templates/index.html @@ -0,0 +1,13 @@ +{% extends "base.html" %} +{% block title %}Home{% endblock %} +{% block head %} + {{ super() }} +{% endblock %} +{% block content %} +
+

Index

+

+ Welcome to my awesome homepage. +

+
+{% endblock %} \ No newline at end of file -- cgit v1.2.3