diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2021-06-03 22:43:10 +0530 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2021-06-03 22:43:10 +0530 |
commit | 00baa0ccc5971b3e579345748dafc59c4b6a9907 (patch) | |
tree | 7710c6769fa9dce79bcb38752772a1497ec11538 /app/templates/index.html | |
parent | f8a9c42b1011f5137a9f7a61566e7e5f1df60b1a (diff) |
Added Templates
* Contact Us form
* Base Index
* Flash error template
Diffstat (limited to 'app/templates/index.html')
-rw-r--r-- | app/templates/index.html | 13 |
1 files changed, 13 insertions, 0 deletions
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 %} +<div class="container"> + <h1>Index</h1> + <p> + Welcome to my awesome homepage. + </p> +</div> +{% endblock %}
\ No newline at end of file |