-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (59 loc) · 2.63 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Azurite</title>
<link href="css/style.css" rel="stylesheet" type="text/css">
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script src="js/getBaseURL.js"></script>
</head>
<body>
<!-- Insert the top navigation bar and welcome header -->
<script src="js/insert/navbar.js"></script>
<!-- Insert the top navigation bar and welcome header -->
<script type="text/javascript" src="js/insert/header.js"></script>
<br><br>
<script>
setHeader("<strong>Azurite Engine</strong>", "Community built Java game engine.");
</script>
<br>
<div style="margin: 0 auto;" class="row container">
<div class="column">
<div class="card">
<img src="images/icons8-java-100.png"></img>
<h2>Built on java and LWJGL</h2>
<h4>Designed for portability and ease of use without compromising speed.</h4>
<a target="_blank" href="https://azurite-engine.github.io/Azurite-Docs/tutorials/set-a-project.html" class="button">Start Using Azurite!</a>
</div>
</div>
<div class="column">
<div class="card">
<img src="images/icons8-open-source-100.png"></img>
<h2>Open Source</h2>
<h4>The engine is 100% open source under the highly permissive MIT license.</h4>
<a target="_blank" href="https://github.com/azurite-engine/azurite" class="button">View the code on GitHub</a>
</div>
</div>
<div class="column">
<div class="card">
<img src="images/icons8-discord-100.png"></img>
<h2>Community Built</h2>
<h4>Azurite started as a community built game engine, and it relies on community contributions.</h4>
<a target="_blank" href="https://discord.gg/GGYgsszjka" class="button">Join the Discord</a>
</div>
</div>
</div>
<br><br><br>
<!-- <div style="margin: 0 auto; background: #F5F8FA;" class="">
<div class="card">
<img src="images/icons8-documents-64.png">
<h2>Explore the Documentation</h2>
</div>
</div> -->
<!-- Insert the navigation legend and footer -->
<script src="js/insert/legendDocs.js"></script>
<script src="js/insert/footer.js"></script>
<script src="js/syntaxHighlighting.js"></script>
</body>
</html>