Skip to content

Commit 8291903

Browse files
Update index.html
1 parent c765c0c commit 8291903

File tree

7 files changed

+86
-110
lines changed

7 files changed

+86
-110
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 Planimeter
3+
Copyright (c) 2022 Planimeter
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Hello. We are Planimeter.
44
## License
55
MIT License
66

7-
Copyright (c) 2020 Planimeter
7+
Copyright (c) 2022 Planimeter
88

99
Permission is hereby granted, free of charge, to any person obtaining a copy
1010
of this software and associated documentation files (the "Software"), to deal

favicon.ico

-4.19 KB
Binary file not shown.

index.html

Lines changed: 84 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,99 @@
11
<!DOCTYPE html>
2-
<html>
2+
<html lang="en" class="h-100">
33
<head>
4-
<!-- Global site tag (gtag.js) - Google Analytics -->
5-
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-108356826-1"></script>
6-
<script>
7-
window.dataLayer = window.dataLayer || [];
8-
function gtag(){dataLayer.push(arguments);}
9-
gtag('js', new Date());
10-
11-
gtag('config', 'UA-108356826-1');
12-
</script>
134
<!-- Required meta tags -->
14-
<meta charset="utf-8">
15-
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
5+
<meta charset="utf-8" />
6+
<meta
7+
name="viewport"
8+
content="width=device-width, initial-scale=1, shrink-to-fit=no"
9+
/>
1610

1711
<!-- Bootstrap CSS -->
18-
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
19-
20-
<!-- Custom styles for this template -->
21-
<link href="styles/main.css" rel="stylesheet">
22-
<link href="styles/theme.css" rel="stylesheet">
23-
<link href="styles/about.css" rel="stylesheet">
12+
<link
13+
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
14+
rel="stylesheet"
15+
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
16+
crossorigin="anonymous"
17+
/>
18+
<link
19+
rel="stylesheet"
20+
href="https://www.andrewmcwatters.com/stylesheets/vendor.css"
21+
/>
22+
<link
23+
rel="stylesheet"
24+
href="https://www.andrewmcwatters.com/stylesheets/theme.css"
25+
/>
2426

2527
<title>Planimeter</title>
28+
29+
<!-- Global site tag (gtag.js) - Google Analytics -->
30+
<script
31+
async
32+
src="https://www.googletagmanager.com/gtag/js?id=UA-108356826-1"
33+
></script>
34+
<script>
35+
window.dataLayer = window.dataLayer || [];
36+
function gtag() {
37+
dataLayer.push(arguments);
38+
}
39+
gtag("js", new Date());
40+
41+
gtag("config", "UA-108356826-1");
42+
</script>
2643
</head>
27-
<body>
44+
<body class="d-flex flex-column h-100">
2845
<header>
29-
<a href="/">
30-
<img src="images/logo.svg" alt="Planimeter">
31-
</a>
46+
<div class="container" style="margin-top: 1in; margin-bottom: 1in">
47+
<p>
48+
<a href="/">
49+
<picture>
50+
<img src="images/logo.svg" alt="Planimeter" />
51+
</picture>
52+
</a>
53+
</p>
54+
</div>
3255
</header>
33-
34-
<main role="main">
35-
<h1>
36-
Hello. We are Planimeter.
37-
</h1>
38-
<h2>
39-
Game engine, framework, and library technology.
40-
</h2>
41-
<p>
42-
Creators of <a href="/grid-sdk">Grid</a> and
43-
<a href="https://github.com/Planimeter/lgameframework">lgameframework.</a>
44-
</p>
45-
<a href="https://github.com/Planimeter">Planimeter on GitHub &#x2192;</a>
56+
<main class="d-flex flex-grow-1">
57+
<div
58+
class="container d-flex flex-column flex-grow-1 justify-content-center"
59+
style="margin-bottom: 1in"
60+
>
61+
<h1>Hello. We are Planimeter.</h1>
62+
<h2>Game engine, framework, and library technology.</h2>
63+
<p>
64+
Creators of <a href="/grid-sdk">Grid</a> and
65+
<a href="https://github.com/Planimeter/lgameframework"
66+
>lgameframework.</a
67+
>
68+
</p>
69+
<a href="https://github.com/Planimeter"
70+
>Planimeter on GitHub &#x2192;</a
71+
>
72+
</div>
4673
</main>
47-
48-
<footer class="footer">
49-
<div class="row">
50-
<div class="col">
51-
<small class="text-muted">Copyright &copy; 2020 Planimeter. All
52-
rights reserved.</small>
53-
</div>
74+
<footer>
75+
<div class="container" style="margin-bottom: 1in">
76+
<p class="mb-0">
77+
<small class="text-muted"
78+
>Copyright © 2015-2022 Planimeter. All rights reserved.</small
79+
>
80+
</p>
5481
</div>
5582
</footer>
83+
84+
<!-- Optional JavaScript; choose one of the two! -->
85+
86+
<!-- Option 1: Bootstrap Bundle with Popper -->
87+
<script
88+
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
89+
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
90+
crossorigin="anonymous"
91+
></script>
92+
93+
<!-- Option 2: Separate Popper and Bootstrap JS -->
94+
<!--
95+
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB" crossorigin="anonymous"></script>
96+
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13" crossorigin="anonymous"></script>
97+
-->
5698
</body>
5799
</html>

styles/about.css

Lines changed: 0 additions & 15 deletions
This file was deleted.

styles/main.css

Lines changed: 0 additions & 39 deletions
This file was deleted.

styles/theme.css

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)