generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathnewsletter-nav.html
65 lines (61 loc) · 2.56 KB
/
newsletter-nav.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<div class="collapse navbar-collapse" id="main-nav">
<ul class="navbar w-auto my-0 py-0 mx-auto">
<li class="nav-item dropdown">
<a class="logo-font dropdown-toggle font-weight-bold nav-link mr-5" href="{% url 'shop' %}"
id="all-shop-items-link" role="button" data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
Shop
</a>
<ul class="dropdown-menu bg-sri">
<li>
<a class="dropdown-item nav-link" href="{% url 'shop' %}">All Products</a>
<div class="dropdown-divider"></div>
</li>
<li>
<a class="dropdown-item nav-link" href="{% url 'shop' %}?category=jewellery">Jewellery</a>
</li>
<li>
<a class="dropdown-item nav-link" href="{% url 'shop' %}?category=sculpture">Sculpture</a>
</li>
<li>
<a class="dropdown-item nav-link" href="{% url 'shop' %}?category=stationary">Stationary</a>
</li>
<li>
<a class="dropdown-item nav-link" href="{% url 'shop' %}?category=art-prints">Art Prints</a>
</li>
<li>
<a class="dropdown-item nav-link" href="{% url 'shop' %}?category=books-and-tarot-decks">Books and
Tarot
Decks</a>
</li>
</ul>
</li>
<li class="nav-item">
<a class="logo-font font-weight-bold nav-link mr-5" href="{% url 'digital_artworks' %}" id="Gallery-link">
Gallery
</a>
</li>
<li class="nav-item d-none">
<a class="logo-font font-weight-bold nav-link text-sri mr-5" href="#" id="Gallery-link">
Sort Digital Art Works
</a>
</li>
<li class="nav-item d-none">
<a class="logo-font font-weight-bold nav-link text-sri mr-5" href="{% url 'commissions' %}"
id="commissions-link">
Commisions
</a>
</li>
<li class="nav-item d-none">
<a class="logo-font font-weight-bold nav-link text-sri" href="{% url 'about_sarah' %}"
id="about-sarah-link">
About Sarah
</a>
</li>
<li class="nav-item">
<a class="logo-font font-weight-bold nav-link" href="{% url 'home' %}" id="home-link">
Home
</a>
</li>
</ul>
</div>