-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (58 loc) · 2.83 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<title>slowly stamps gallery</title>
<meta charset="utf-8">
<meta name="description" content="Interactive explorative gallery of stamps from the slowly platform">
<meta name="keywords" content="slowly, stamps, gallery, ts, html, github-actions, github">
<meta name="author" content="Saurav Das">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Boostrap resources -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" href="static/style.css">
<script type="module" src="static/script.js" defer></script>
</head>
<body>
<div class="container-fluid" style="width: 90vw;">
<!-- Top navigation bar -->
<nav class="navbar navbar-light bg-white sticky-top">
<div id="sw-navbar" class="d-flex container-fluid flex-wrap justify-content-between">
<div class="d-flex" style="align-items: center;">
<a href="https://github.com/dvaruas/slowlystamps" style="text-decoration: none; color: black;"
target="_blank">
<img src="static/github.svg" alt="github logo" width="34" height="34">
</a>
<a href="https://web.slowly.app/" target="_blank">
<img src="static/logo.png" alt="slowly-logo">
</a>
<div id="sw-display-count">
<!-- the count element will be created and inserted here
by the script -->
</div>
</div>
<!-- the navbar will be constructed and inserted here by the
script -->
</div>
</nav>
<!-- Content area -->
<div id="sw-container" class="d-flex flex-wrap justify-content-center">
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="sw-modal" data-bs-keyboard="false" tabindex="-1">
<div class="modal-dialog modal-md modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="sw-modal-title"></h5>
<button type="button" class="btn-close" data-bs-dismiss="modal"></button>
</div>
<div id="sw-modal-body" class="modal-body"></div>
</div>
</div>
</div>
</body>
</html>