-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (102 loc) · 3.08 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
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
102
103
104
105
106
<!DOCTYPE html>
<html lang="en" class="h-100">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!-- Bootstrap CSS -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://www.andrewmcwatters.com/stylesheets/vendor.css"
/>
<link
rel="stylesheet"
href="https://www.andrewmcwatters.com/stylesheets/theme.css"
/>
<title>Planimeter</title>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-108356826-1"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-108356826-1");
</script>
</head>
<body class="d-flex flex-column h-100">
<header>
<div class="container" style="margin-top: 1in; margin-bottom: 1in">
<p style="height: 27.5px">
<a href="/">
<picture>
<img src="images/logo.svg" alt="Planimeter" height="16" />
</picture>
</a>
</p>
<nav>
<ul class="nav">
<li class="nav-item">
<a class="nav-link active ps-0" href="/">Home</a>
</li>
<li class="nav-item text-center">
<a class="nav-link" href="/game-engine-2d">Game Engine 2D</a>
</li>
<li class="nav-item text-center">
<a
class="nav-link"
href="https://github.com/Planimeter/game-framework"
>Game Framework</a
>
</li>
<li class="nav-item text-center">
<a class="nav-link pe-0" href="compare"
>Compare<br /><small class="text-new">New</small></a
>
</li>
</ul>
</nav>
</div>
</header>
<main class="d-flex flex-grow-1">
<div
class="container d-flex flex-column flex-grow-1 justify-content-center"
style="margin-bottom: 1in"
>
<h1>
<small>Game engine, framework, and library technology.</small>
</h1>
<a href="https://github.com/Planimeter"
>Planimeter on GitHub →</a
>
</div>
</main>
<footer>
<div class="container py-3">
<p class="mb-0">
<span class="text-muted"
>Copyright © 2015-2023 Planimeter. All rights reserved.</span
>
</p>
</div>
</footer>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm"
crossorigin="anonymous"
></script>
</body>
</html>