From 9e90b26696ed097fd036950e0f9cb3888e043908 Mon Sep 17 00:00:00 2001 From: Daniel Diaz Date: Mon, 24 May 2021 23:28:33 -0500 Subject: [PATCH] Added base template --- config/templates/base.html | 37 ++++++++++++++++++++++++++++++++++ config/templates/navbar.html | 39 ++++++++++++++++++++++++++++++++++++ 2 files changed, 76 insertions(+) create mode 100644 config/templates/base.html create mode 100644 config/templates/navbar.html diff --git a/config/templates/base.html b/config/templates/base.html new file mode 100644 index 0000000..0159a80 --- /dev/null +++ b/config/templates/base.html @@ -0,0 +1,37 @@ + + + + + + + Django Photo Sharing app + + + + + + {% include 'navbar.html' %} + + {% block body %} + + + {% endblock body %} + + + + + diff --git a/config/templates/navbar.html b/config/templates/navbar.html new file mode 100644 index 0000000..0fdad1a --- /dev/null +++ b/config/templates/navbar.html @@ -0,0 +1,39 @@ +