-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<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=Source+Code+Pro&family=Source+Sans+Pro&display=swap" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>apernet-status</title>
</head>
<body>
<div class="container">
<div class="status-list">
<div class="section-title">AperNet infrastructure status</div>
<div id="status-list""></div>
</div>
<div class="news-list">
<div class="section-title">News</div>
<div id="news-list"></div>
<div class="news-block" id="load-more">
<div class="load-more">Load more...</div>
</div>
</div>
</div>
</body>
<script src="app.js"></script>
</html>