-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayout.html
29 lines (28 loc) · 1.02 KB
/
layout.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html>
<head>
<meta charset = "utf-8">
<title>Denisse's Cafe Homepage</title>
<link rel="stylesheet" href="/styles/layout.css">
<script src="/scripts/helpers.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
{% block styles %}{% endblock %}
</head>
<body>
<div class="itembar">
<a href="/"><img src="/imgs/Logo.png" width="200px"></a>
<div class="options">
{%for navItem in nav%}
<a href="{{navItem['url']}}"
class="navbuttons {%if navItem['url']==currentUrl%}current{%endif%}">
{{navItem['name']}}
</a>
{%endfor%}
<a class="navbuttons" onclick="displayCart()">
<i class="fa fa-shopping-cart"></i>
</a>
</div>
</div>
{% block body %}{% endblock %}
</body>
</html>