Skip to content
Snippets Groups Projects
Commit 9ea16619 authored by Michael Drury's avatar Michael Drury
Browse files

made the header photo a link

parent f22f3e87
No related branches found
No related tags found
No related merge requests found
......@@ -42,7 +42,7 @@
{% endif %}
{% if cart_size > 0: %}
<p class = "total_price">Total price: {{ total_price }}</p>
<p class = "total_price">Total price: £{{ total_price }}</p>
{% endif %}
{% for item in cart_list %}
......
......@@ -28,14 +28,16 @@
<div id="page-container">
<div class="header">
<img class="header_img"
src="{{ url_for('static', filename='images/dark_logo.png') }}"
onmouseover="this.src='{{ url_for('static', filename='images/dark_logo_orange.png') }}'"
onmouseout="this.src='{{ url_for('static', filename='images/dark_logo.png') }}'"
alt="logo image" />
</div>
<a href="{{ url_for('home') }}">
<img class="header_img"
src="{{ url_for('static', filename='images/dark_logo.png') }}"
onmouseover="this.src='{{ url_for('static', filename='images/dark_logo_orange.png') }}'"
onmouseout="this.src='{{ url_for('static', filename='images/dark_logo.png') }}'"
alt="logo image" />
</a>
</div>
<ul class = "navbar">
<li><div class = "navbar_box_home"><a class = "navbar_item" href="{{ url_for('home') }}">Home</a></div></li>
<li><div class = "navbar_box"><a class = "navbar_item" href="{{ url_for('shopping') }}">Shopping</a></div></li>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment