-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathchangelog.html
88 lines (79 loc) · 2.57 KB
/
changelog.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
<!--
Written by BadDev / Cozi for NSBX API homepage
- All content needed to render the page is contained within this single file
- Static HTML and CSS site in one file
- Images are hosted on postimg
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="author" content="BadDev" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<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=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap" rel="stylesheet" />
<link rel="icon" href="/icon.webp" type="image/x-icon" />
<title>NSBX</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" />
<link href="/styles.css" rel="stylesheet" />
<script src="/index.js"></script>
</head>
<body>
<div class="col-lg-8 mx-auto p-4 py-md-5">
<header class="d-flex align-items-end pb-3 mb-3 justify-content-between">
<div>
<a href="/" rel="noopener" title="home page" class="d-flex flex-column align-items-center text-light text-decoration-none">
<img height="60px" width="auto" src="/home-icon.webp" alt="home icon with text" class="img-button" />
</a>
</div>
<h2 class="p-2" style="text-align: center">NSBX Changelog</h2>
<div id="statusBox" class="text mt-3 justify-content-center" style="height: 60px">
<span class="status-text font-monospace" id="statusText">Checking...</span>
</div>
</header>
<main>
<!-- <div class="box" style="cursor: default">
<div class="d-flex justify-content-center"></div>
<div class="text pt-2 pb-4">
<ul>
<li>More sources 🌐</li>
<li>Better quality 🎥</li>
<li>Faster! ⚡</li>
</ul>
</div>
</div> -->
<div class="container">
<div class="row">
<div class="col-md-8">
<div class="changelog">
<div class="entry">
<h3>1.0.0 - YYYY-MM-DD</h3>
<pre></pre>
<h5>This is what has been changed xd</h5>
<div class="actions">
<h4>Added:</h4>
<ul>
<li>Added 1</li>
<li>Added 2</li>
</ul>
<pre></pre>
<h4>Changed:</h4>
<ul>
<li>Changed 1</li>
</ul>
<pre></pre>
<h4>Fixed:</h4>
<ul>
<li>Fixed 1</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
</div>
</body>
</html>