-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.html
102 lines (96 loc) · 3.79 KB
/
template.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Tophat 2d game framework">
<meta name="keywords" content="tophat, 2d, games, gamedev,
framework, engine, umka, umka-lang">
<meta name="author" content="Marek Maškarinec">
<meta property="og:title" content="Tophat - 2d game framework">
<meta property="og:image"
content="https://tophat2d.dev/thumbnail.png">
<title>{:: ./title.sh ::} | TOPHAT2D.DEV</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<link rel="stylesheet" href="/style.css">
<script defer data-domain="tophat2d.dev" src="https://plausible.chamik.eu/js/script.js"></script>
</head>
<body>
<div class="text-bg-dark">
<div class="container">
<header
class="d-flex flex-wrap justify-content-center py-3 mb-4 border-bottom"
>
<a href="/" class="d-flex align-items-center mb-3 mb-md-0 me-md-auto text-decoration-none">
<img src="/logo-white.png" class="bi me-2 no-aa" height="32" />
</a>
<ul class="nav nav-pills">
<li class="nav-item"><a href="/" class="nav-link text-white
{:: [ $SITE_SRC = './index.md' ] && echo active ::}"
>
Home
</a></li>
<li class="nav-item"><a href="https://tophat2d.dev/playground" class="nav-link text-white"
>
Playground
</a></li>
<li class="nav-item"><a href="https://docs.tophat2d.dev" class="nav-link text-white"
>
Docs
</a></li>
<li class="nav-item"><a href="/dl" class="nav-link text-white
{:: [ `dirname $SITE_SRC` = './dl' ] && echo active ::}"
>
Downloads
</a></li>
<li class="nav-item"><a
href="https://discord.gg/PcT7cn59h9"
class="nav-link text-white"
>
Discord
</a></li>
<li class="nav-item"><a
href="https://github.com/tophat2d/tophat"
class="nav-link text-white"
>
GitHub
</a></li>
<li class="nav-item"><a
href="https://umbox.tophat2d.dev"
class="nav-link text-white"
>
Packages
</a></li>
</ul>
</ul>
</header>
</div>
</div>
<div class="container">
{:: cat $SITE_PATH ::}
</div>
<div class="container">
<footer class="d-flex flex-wrap justify-content-between align-items-center py-3 my-4 border-top">
<a href="/" class="d-flex align-items-center justify-content-center mb-3 mb-md-0 me-md-auto link-dark text-decoration-none">
<img src="/logo.png" class="bi me-2 no-aa" height="24" />
</a>
<ul class="nav justify-content-end">
<li class="nav-item"><a href="/" class="nav-link px-2 text-muted">Home</a></li>
<li class="nav-item"><a href="https://tophat2d.dev/playground" class="nav-link px-2
text-muted">Playground</a></li>
<li class="nav-item"><a href="https://docs.tophat2d.dev" class="nav-link px-2
text-muted">Docs</a></li>
<li class="nav-item"><a href="/dl" class="nav-link px-2
text-muted">Downloads</a></li>
<li class="nav-item"><a href="https://discord.gg/PcT7cn59h9"
class="nav-link px-2 text-muted">Discord</a></li>
<li class="nav-item"><a href="https://github.com/tophat2d/tophat"
class="nav-link px-2 text-muted">GitHub</a></li>
<li class="nav-item"><a href="https://umbox.tophat2d.dev/"
class="nav-link px-2 text-muted">Packages</a></li>
</ul>
</footer>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN" crossorigin="anonymous"></script>
</body>
</html>