-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoffline.html
44 lines (42 loc) · 1.86 KB
/
offline.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="Description" content="Stranger Foods">
<meta name="viewport" content="width=device-width">
<meta name="theme-color" content="#292d33"/>
<title>Offline | Stranger Foods</title>
<link rel="preload" href="/css/colours.min.css" as="style"/>
<link rel="stylesheet" type="text/css" href="/css/offline.min.css">
<script defer src="/js/menu.min.js"></script>
<link rel="icon" href="favicon.svg" type="image/svg+xml"/>
</head>
<body>
<main> <header>
<a href="/">Stranger Foods</a>
<button type="button" id="sidebar" aria-label="Menu">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" d="M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5" />
</svg>
</button>
</header>
<img itemprop="image" class="recipe-image" src="/img/placeholder.webp" alt="Placeholder image." width="512" height="288"/>
<section class="recipe">
<h1>Offline</h1>
</section>
</main> <nav>
<div>
<h3><a href="/">Home</a></h3>
<h3><a href="/top-recipes">Top Recipes</a></h3>
<h3><a href="/all-recipes">All Recipes</a></h3>
<h3><a href="/search">Search</a></h3>
<h3><a href="/feed/atom.xml">Feed</a></h3>
</div>
<div id="settings-options">
<button type="button" id="theme-btn" disabled>
Theme<span class="light-text">Auto</span>
</button>
</div>
</nav>
</body>
</html>