From 4c42cbabd80a5bc4129cd490d16b64ca824dd277 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Thu, 25 Jun 2020 22:14:07 +0530 Subject: Bumped Bootstrap version from 4.0 to 4.5, added favicon, modified header, added 404.html, added about me, modified base html --- app/templates/404.html | 7 +++++++ app/templates/about.html | 7 +++++++ app/templates/base.html | 11 ++++++++--- 3 files changed, 22 insertions(+), 3 deletions(-) create mode 100644 app/templates/404.html create mode 100644 app/templates/about.html (limited to 'app/templates') diff --git a/app/templates/404.html b/app/templates/404.html new file mode 100644 index 0000000..a4e9644 --- /dev/null +++ b/app/templates/404.html @@ -0,0 +1,7 @@ +{% extends 'base.html' %} + +{% block main %} +

Oh Snap! Error 404

+

The Page you are looking for cannot be found

+

Go Back home

+{% endblock %} \ No newline at end of file diff --git a/app/templates/about.html b/app/templates/about.html new file mode 100644 index 0000000..d9e1c70 --- /dev/null +++ b/app/templates/about.html @@ -0,0 +1,7 @@ +{% extends 'base.html' %} + +{% block main %} +

About Curie Web

+

The Page you are looking for cannot be found

+

Go Back home

+{% endblock %} \ No newline at end of file diff --git a/app/templates/base.html b/app/templates/base.html index 68fe61b..8c6b030 100644 --- a/app/templates/base.html +++ b/app/templates/base.html @@ -3,12 +3,17 @@ Curie Web - + + + + + +
-

Curie Web Demo

+

Curie Web

-- cgit v1.2.3