-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsaved-recipes.html
185 lines (139 loc) · 6.21 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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
<!--
! https://github.com/Prakhar-002
? © prakhar.katiyar.002@gmail.com
-->
<!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 - Cook.io</title>
<meta name="title" content="All Recipes - Cook.io">
<meta name="description" content="This is a recipe application made by PRAKHAR KATIYAR">
<!-- Fevicon -->
<link rel="shortcut icon" href="./favicon.svg" type="image/svg+xml">
<!-- 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 src="./assets/js/global.js" type="module"></script>
<script src="./assets/js/saved_recipes.js" type="module"></script>
<!-- FONT AWESOME -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<!-- #HEADER -->
<header class="header" data-header>
<a href="/" class="logo">
<img
src="./assets/images/logo-light.svg"
width="156"
height="32"
alt="Cook.io"
class="logo-light"
>
<img
src="./assets/images/logo-dark.svg"
width="156"
height="32"
alt="Cook.io"
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="./index.html" 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="#" 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 class="footer">
<p class="copyright body-medium">Copyright 2024 </p>
<a href="https://github.com/Prakhar-002" target="_blank" class="git-tag">
<i class="fa-brands fa-github"></i>
Prakhar-002
</a>
<a href="/" class="logo">
<img
src="./assets/images/logo-light.svg"
width="156"
height="32"
alt="Cook.io"
class="logo-light"
>
<img
src="./assets/images/logo-dark.svg"
width="156"
height="32"
alt="Cook.io"
class="logo-dark"
>
</a>
<a href="https://www.edamam.com/" target="_blank" class="edamam">
<img
src="./assets/images/edamam.svg"
alt="edamam free recipe api"
width="200"
height="40"
loading="lazy">
</a>
</footer>
</body>
</html>