-
Notifications
You must be signed in to change notification settings - Fork 0
/
saved-recipe.html
153 lines (145 loc) · 4.6 KB
/
saved-recipe.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Saved Recipes</title>
<meta name="title" content="FoodMa" />
<link rel="shortcut icon" href="/images/food.svg" type="image/svg+xml" />
<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:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=DM+Serif+Text:ital@0;1&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0..1,0"
/>
<link rel="stylesheet" href="css/style.css" />
<script src="js/theme.js" type="module" defer></script>
<script src="js/global.js" type="module" defer></script>
<script src="js/save-recipe.js" type="module" defer></script>
</head>
<body>
<header class="header" data-header>
<a href="index.html" class="logo">
<img
src="/images/FOODMAlight.svg"
width="160"
height="24"
class="logo-light"
alt="FoodMaster Light Logo"
/>
<img
src="/images/FOODMAdark.svg"
width="160"
height="24"
class="logo-dark"
alt="FoodMaster Dark Logo"
/>
</a>
<nav class="navbar">
<ul class="navbar-list">
<li>
<a href="index.html" class="navbar-link title-small has-state"
>Home</a
>
</li>
<li>
<a href="recipe.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-recipe.html" class="btn btn-primary">
<span class="material-symbols-outlined" aria-hidden="true">book</span>
<span class="span">Saved Recipes</span>
</a>
</header>
<!-- MOBILE NAVBAR -->
<nav class="mobile-nav" aria-label="primary">
<ul class="nav-list">
<li class="nav-item">
<a href="recipe.html" class="nav-link" aria-current="true">
<span class="item-icon">
<span class="material-symbols-outlined" aria-hidden="true"
>dinner_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"
>house</span
>
</span>
<span class="label-medium">Home</span>
</a>
</li>
<li class="nav-item">
<a href="saved-recipe.html" class="nav-link">
<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>
<h2 class="headline-small section-title">All Saved Recipes</h2>
</article>
</main>
<!-- FOOTER -->
<footer class="footer">
<p class="copyright body-medium">Copyright 2024</p>
<a href="index.html" class="logo">
<img
src="/images/FOODMAlight.svg"
width="160"
height="24"
class="logo-light"
alt="FoodMaster Light Logo"
/>
<img
src="/images/FOODMAdark.svg"
width="160"
height="24"
class="logo-dark"
alt="FoodMaster Dark Logo"
/>
</a>
<a href="https://www.edamam.com/" target="_blank" class="edaman">
<img
src="/images/edamam.svg"
width="200"
height="40"
loading="lazy"
alt="Free Recipe API"
/>
</a>
</footer>
</body>
</html>