-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (38 loc) · 1.46 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Abyss Engine</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<link rel="icon" href="abyssbadge.png">
<script src="https://cdn.jsdelivr.net/npm/handlebars@latest/dist/handlebars.js"></script>
<script type="text/javascript" src="scripts/dynload.js"></script>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body onload="includeHTML()">
<div w3-include-html="views/navbar.html"></div>
<section class="section">
<div class="container">
<h1 class="title">
Abyss Engine
</h1>
<p class="subtitle">
The <strong>ARPG</strong> game engine
</p>
<div class="content">
AbyssEngine is a game engine designed to run games similar to 2000's style ARPGs such as Diablo II.
</div>
<div class="content">
This repository provides the core engine AbyssEngine Engine, as well as the AbyssEngine Toolset. It also
includes the library libAbyss, which is used by this project, and can be used by 3rd party applications as well.
</div>
<div class="content">
NOTE: This is just the engine core. It will not run by itself.
</div>
</div>
</section>
<div w3-include-html="views/footer.html"></div>
</body>
</html>