diff --git a/store/templates/base.html b/store/templates/base.html index ed7de16cba74404d6a15fd398bababc405e7fe6b..89e7d0bcf3c2aa699b9d33270899cdb314c57312 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>