-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (37 loc) · 1.98 KB
/
index.html
File metadata and controls
37 lines (37 loc) · 1.98 KB
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
<!DOCTYPE html>
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Webula</title>
<meta name="description" content="GUI for the SpaceTraders API game">
<meta name="keywords" content="SpaceTraders, space, trading, API, game, GUI">
<meta name="author" content="Leo Herzog | herzog.tech">
<meta property="og:title" content="Webula">
<meta property="og:description" content="GUI for the SpaceTraders API game">
<meta property="og:type" content="website">
<meta property="og:url" content="https://webula.herzog.tech/">
<meta property="og:site_name" content="Webula">
<meta property="og:locale" content="en_US">
<link rel="manifest" href="manifest.json">
<meta name="theme-color" content="#13171f">
<link rel="icon" href="icons/favicon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="icons/apple-touch-icon.png">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.colors.css">
<link rel="stylesheet" href="css/style.css">
<script src="https://kit.fontawesome.com/f0d2d60eac.js" crossorigin="anonymous"></script>
</head>
<body>
<header class="container" id="app-header">
<nav id="app-nav"></nav>
</header>
<main class="container" id="app-main"></main>
<footer class="container" style="text-align:center">
<small id="last-updated"></small>
<small><a href="https://github.com/leoherzog/webula" target="_blank"><i class="fa-brands fa-github"></i> Webula</a> | <a href="https://spacetraders.io" target="_blank"><i class="fa-solid fa-rocket-launch"></i> SpaceTraders</a> | <a href="https://herzog.tech" target="_blank"><i class="fa-solid fa-heart"></i> herzog.tech</a></small>
</footer>
<script type="module" src="js/app.js"></script>
<script>if ('serviceWorker' in navigator) navigator.serviceWorker.register('/sw.js');</script>
</body>
</html>