-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (62 loc) · 2.17 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
---
layout: default
title: Open Source GTA III engine re-implementation
---
<section class="jumbotron">
<section class="content">
<div class="pure-g">
<div class="pure-u-1 pure-u-lg-1-2">
<h1 class="text-centered header-main">
<img src="{{ site.baseurl }}/media/logo_text_flat.png" alt="OpenRW">
</h1>
<h2>A Grand Theft Auto III re-implementation</h2>
<h3>For users</h3>
<ul>
<li>A faithful rendition of the classic action PC game</li>
<li>Runs on modern Linux, BSD, macOS and Windows systems</li>
</ul>
<h3>For developers</h3>
<ul>
<li><a href="https://github.com/rwengine/openrw">Open source under GNU GPLv3 license</a>, in active development</li>
<li><a href="https://github.com/rwengine/openrw/wiki/Development">Developer information</a></li>
</ul>
</div>
<div class="pure-u-1 pure-u-lg-1-2">
<div class="carousel">
<ul class="carousel-panes">
<li>
<img src="{{ site.baseurl }}/media/gallery/1.jpg" alt="OpenRW screenshot #1">
</li>
<li>
<img src="{{ site.baseurl }}/media/gallery/2.jpg" alt="OpenRW screenshot #2">
</li>
<li>
<img src="{{ site.baseurl }}/media/gallery/3.jpg" alt="OpenRW screenshot #3">
</li>
<li>
<img src="{{ site.baseurl }}/media/gallery/4.jpg" alt="OpenRW screenshot #4">
</li>
</ul>
</div>
</div>
</div>
</section>
</section>
<section class="content">
<div class="width-reduced">
<h1 id="faq" class="text-centered">Frequently asked questions</h1>
{% include markdown.html file="faq.md" %}
</div>
</section>
<script type="text/javascript">
var issues = document.getElementById('issues-badge');
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = () => {
if (xhr.readyState == XMLHttpRequest.DONE && xhr.status == 200) {
var d = JSON.parse(xhr.responseText);
issues.textContent = d['open_issues'];
}
}
xhr.open('GET', 'https://api.github.com/repos/rwengine/openrw', true);
xhr.send();
</script>