-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsaved-recipes.html
168 lines (147 loc) · 4.55 KB
/
saved-recipes.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary meta tags -->
<title>Saved Recipes - TelmaFood</title>
<meta name="title" content="All Recipes - TelmaFood" />
<meta
name="description"
content="This is a recipe application made by Mohammadhossein Asadi"
/>
<!-- theme.js -->
<script src="./assets/js/theme.js"></script>
<!-- google font -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500&family=DM+Serif+Display&display=swap"
rel="stylesheet"
/>
<!-- material icon -->
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0..1,0"
/>
<!-- custom css -->
<link rel="stylesheet" href="./assets/css/style.css" />
<!-- custom js -->
<script type="module" src="./assets/js/global.js"></script>
<script type="module" src="./assets/js/saved_recipes.js"></script>
</head>
<body>
<!-- #---------- HEADER ----------# -->
<header class="header" data-header>
<a href="/" class="logo">
<img
src="./assets/images/logo-light.svg"
alt="TelmaFood"
width="156"
height="32"
class="logo-light"
/>
<img
src="./assets/images/logo-dark.svg"
alt="TelmaFood"
width="156"
height="32"
class="logo-dark"
/>
</a>
<nav class="navbar">
<ul class="navbar-list">
<li>
<a href="/" class="navbar-link title-small has-state"> Home </a>
</li>
<li>
<a href="./recipes.html" class="navbar-link title-small has-state">
Recipes
</a>
</li>
</ul>
</nav>
<button
class="icon-btn theme-switch has-state"
aria-pressed="false"
aria-label="Toggle light and dark theme"
data-theme-btn
>
<span class="material-symbols-outlined light-icon" aria-hidden="true"
>light_mode</span
>
<span class="material-symbols-outlined dark-icon" aria-hidden="true"
>dark_mode</span
>
</button>
<a href="./saved-recipes.html" class="btn btn-primary has-icon">
<span class="material-symbols-outlined" aria-hidden="true">book</span>
<span class="span">Saved Recipes</span>
</a>
</header>
<!-- #---------- MOBILE NAV ----------# -->
<nav class="mobile-nav" aria-label="primary">
<ul class="nav-list">
<li class="nav-item">
<a href="./recipes.html" class="nav-link">
<span class="item-icon">
<span class="material-symbols-outlined" aria-hidden="true"
>lunch_dining</span
>
</span>
<span class="label-medium">Recipes</span>
</a>
</li>
<li class="nav-item">
<a href="/" class="nav-link">
<span class="item-icon">
<span class="material-symbols-outlined" aria-hidden="true"
>home</span
>
</span>
<span class="label-medium">Home</span>
</a>
</li>
<li class="nav-item">
<a href="./saved-recipes.html" class="nav-link" aria-current="true">
<span class="item-icon">
<span class="material-symbols-outlined" aria-hidden="true"
>book</span
>
</span>
<span class="label-medium">Saved</span>
</a>
</li>
</ul>
</nav>
<main>
<article
class="article container saved-recipe-page"
data-saved-recipe-container
></article>
</main>
<!-- #---------- FOOTER ----------# -->
<footer class="footer">
<p class="copyright body-medium">
Copyright 2023
<a href="https://t.me/mohammad_h_sd">Mohammadhossein_Asadi</a>
</p>
<a href="/" class="logo">
<img
src="./assets/images/logo-light.svg"
alt="TelmaFood"
width="156"
height="32"
class="logo-light"
/>
<img
src="./assets/images/logo-dark.svg"
alt="TelmaFood"
width="156"
height="32"
class="logo-dark"
/>
</a>
</footer>
</body>
</html>