-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (47 loc) · 1.9 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="What's happening across the Fediverse">
<link rel="stylesheet" href="src/styles/common.css">
<link rel="stylesheet" href="src/styles/index.css">
<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=Noto+Sans&display=swap" rel="stylesheet">
<title>Blend | What's happening across the Fediverse</title>
</head>
<body>
<header>
<h1>Blend</h1>
<button id="refresh">
<img src="media/refresh.svg" class="icon-large" alt="refresh button icon">
</button>
<div class="flex-spacer"></div>
<button onclick="location.href='settings.html'">
<img src="media/settings.svg" class="icon-large" alt="settings page button icon">
</button>
</header>
<div id="loading">
<div class="shadowbox">
<div class="loader">
<svg class="circular" viewBox="25 25 50 50">
<circle class="path" cx="50" cy="50" r="20" fill="none" stroke-width="2" stroke-miterlimit="10"/>
</svg>
</div>
</div>
</div>
<main id="featuredTagsPosts">
</main>
<script type="module" src="src/scripts/index.js"></script>
<footer>
<button class="page-button" id="prev-page" type="button">
<img src="media/previous-page.svg" class="icon-small" alt="previous page button icon">
</button>
<span class="page-label" id="page-label"></span>
<button class="page-button" id="next-page" type="button">
<img src="media/next-page.svg" class="icon-small" alt="next page button icon">
</button>
</footer>
</body>
</html>