-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_navbar.html
119 lines (119 loc) · 4.88 KB
/
_navbar.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<div class="nav--wrapper bg-light rcc_menu-nav-desktop">
<div class="list__item list_item_chosen text-uppercase title-bold text-center" data-arrow="down">
<span class="chosen-title title-bold">
{{ 'Purchase_History_Tab' | t }}
</span>
<i class="fas fa-chevron-down arrow-down"></i>
<i class="fas fa-chevron-up arrow-up" style="display: none"></i>
</div>
<ul class="nav__list--desktop rc_page-width text-uppercase title-bold rc_card_container">
<li class="js-subscriptions-page">
<a href="{{ subscription_list_url }}" id="subscriptions-page" class="subscriptions-page">
{{ 'Subscriptions_Tab' | t }}
</a>
</li>
<hr>
{% if settings.customer_portal.view_order_schedule %}
<li class="js-schedule-page">
<a href="{{ schedule_url }}" id="schedule-page" class="schedule-page">{{ 'Delivery_Schedule_Tab' | t }}</a>
</li>
<hr>
{% endif %}
<li class="js-orders-page">
<a href="{{ order_list_url }}" id="orders-page" class="orders-page">{{ 'Purchase_History_Tab' | t }}</a>
</li>
<hr>
{% if settings.customer_portal.view_recharge_payment_methods %}
<li class="js-addresses-page">
<a href="{{ shipping_list_url }}" id="shipping-page" class="shipping-page">Shipping</a>
</li>
<hr>
<li class="js-payment_methods-page">
<a href="{{ payment_methods_url }}" id="payment_methods-page" class="payment_methods-page">Payment Methods</a>
</li>
<hr>
{% else %}
<li class="js-addresses-page">
<a
href="{{ address_list_url }}"
id="addresses-page"
class="addresses-page"
>{{ 'cp_shipping_addresses_nav' | t }}</a
>
</li>
<hr>
<li class="js-payment_sources-page">
<a
href="{{ payment_source_list_url }}"
id="payment_sources-page"
class="payment_sources-page"
>{{ 'Billing_Information_Tab' | t }}</a
>
</li>
<hr>
{% endif %}
<li class="js-my_account-page">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-user"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path><circle cx="12" cy="7" r="4"></circle></svg>
<a
href="/account"
id="my_account-page"
class="title-bold my_account-page"
>My Account</a
>
</li>
</ul>
</div>
<div class="nav__slider--mobile">
<ul class="nav__list--mobile title-bold text-center">
<li class="js-subscriptions-page text-uppercase">
<a href="{{ subscription_list_url }}" id="subscriptions-page" class="subscriptions-page">
{{ 'Subscriptions_Tab' | t }}
</a>
</li>
{% if settings.customer_portal.view_order_schedule %}
<li class="js-schedule-page text-uppercase">
<a href="{{ schedule_url }}" id="schedule-page" class="schedule-page">{{ 'Delivery_Schedule_Tab' | t }}</a>
</li>
{% endif %}
<li class="js-orders-page text-uppercase">
<a href="{{ order_list_url }}" id="orders-page" class="orders-page">{{ 'Purchase_History_Tab' | t }}</a>
</li>
{% if settings.customer_portal.view_recharge_payment_methods %}
<li class="js-addresses-page text-uppercase">
<a href="{{ shipping_list_url }}" id="shipping-page" class="shipping-page">Shipping</a>
</li>
<li class="js-payment_methods-page text-uppercase">
<a href="{{ payment_methods_url }}" id="payment_methods-page" class="payment_methods-page">Payment Methods</a>
</li>
{% else %}
<li class="js-addresses-page text-uppercase">
<a
href="{{ address_list_url }}"
id="addresses-page"
class="addresses-page"
>{{ 'cp_shipping_addresses_nav' | t }}</a
>
</li>
<li class="js-payment_sources-page text-uppercase">
<a
href="{{ payment_source_list_url }}"
id="payment_sources-page"
class="payment_sources-page"
>{{ 'Billing_Information_Tab' | t }}</a
>
</li>
{% endif %}
<li class="js-my_account-page">
<a
href="/account"
id="my_account-page"
class="title-bold my_account-page"
>My Account</a
>
</li>
</ul>
<div class="slider_pagination">
<button class="slider_pagination_btn slider_pagination_btn--sel" data-index="0"></button>
<button class="slider_pagination_btn" data-index="1"></button>
</div>
</div>