diff --git a/myproject/templates/_contact.html b/myproject/templates/_contact.html new file mode 100644 index 0000000..b895f0d --- /dev/null +++ b/myproject/templates/_contact.html @@ -0,0 +1,90 @@ + + +
+
+
+
+

Let's Get In Touch!

+
+

Ready to start your next project with us? That's great! Give us a call or send us an email and we will get back to you as soon as possible!

+
+ + +
+
+
+ + \ No newline at end of file diff --git a/myproject/templates/_footer.html b/myproject/templates/_footer.html new file mode 100644 index 0000000..ecb5480 --- /dev/null +++ b/myproject/templates/_footer.html @@ -0,0 +1,27 @@ + diff --git a/myproject/templates/_header.html b/myproject/templates/_header.html new file mode 100644 index 0000000..e445f40 --- /dev/null +++ b/myproject/templates/_header.html @@ -0,0 +1,11 @@ + + +
+
+
+
Welcome To Our Studio!
+
It's Nice To Meet You
+ Tell Me More +
+
+
diff --git a/myproject/templates/_nav.html b/myproject/templates/_nav.html new file mode 100644 index 0000000..365c342 --- /dev/null +++ b/myproject/templates/_nav.html @@ -0,0 +1,42 @@ + + + diff --git a/myproject/templates/base.html b/myproject/templates/base.html new file mode 100644 index 0000000..153a956 --- /dev/null +++ b/myproject/templates/base.html @@ -0,0 +1,62 @@ +{% load static from staticfiles %} + + + + + + + + + + + + {% block title %}{% endblock %} - {{ config.site_name }} + + + + + + + + + + + + + + + + + + + + + + {% include '_nav.html' %} + {% block content %}{% endblock %} + {% include '_footer.html' %} + + + + + + + + + + + + + + + + + + + + + +