From da0dc5400111dba7a0b416ae5115afa44cd22962 Mon Sep 17 00:00:00 2001
From: nj2-desmond <nicholas2.desmond@live.uwe.ac.uk>
Date: Thu, 9 Feb 2023 13:48:32 +0000
Subject: [PATCH] Created HTML for base page, also linked to CSS in static
 folder.

---
 store/templates/base.html | 34 +++++++++++++++++++++++++---------
 1 file changed, 25 insertions(+), 9 deletions(-)

diff --git a/store/templates/base.html b/store/templates/base.html
index ed7de16..89e7d0b 100644
--- a/store/templates/base.html
+++ b/store/templates/base.html
@@ -2,18 +2,34 @@
 <html lang="en">
 <head>
   <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
-  {% if title %} <!-- If passed a title, use it. -->
-    <title>{{title}}</title>
-  {% else %}
-    <title>Store</title>
-  {% endif %}
-  <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='main.css') }}">  <!-- Load the CSS. -->
+  <title>Antiques Online</title>
+  <link rel="stylesheet" type="text/css" href="../static/main.css">  <!-- Load the CSS. -->
 </head>
+
 <body>
-  <header>
-  </header>
+    <header>
+    <h1>ANTIQUES ONLINE</h1>
+    </header>
+
+  <div>
+    <ul>
+      <li><a href="",target="_self">Basket</a></li>
+      <li><a href="",target="_self">Items</a></li>
+      <li><a href="",target="_self">Item Sets</a></li>
+      <li><a class="login",href="",target="_self">Login:</a></li>
+      <input type="text" placeholder="Enter Login Details...">
+    </ul>
+  </div>
+
+
+
   {% block content %}{% endblock %} <!-- Where HTML will go when extended. -->
+  
+  
   <footer>
+    <p>Contact Info: mail@mail.com
+        <br>
+        Phone Number 0000 000 0000</p>
   </footer>
 </body>
-</html>
\ No newline at end of file
+</html>
-- 
GitLab