forked from opengaming/osgameclones
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
65 lines (59 loc) · 2.69 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
{%- import 'templates/common.html' as common with context %}
{%- import 'templates/games.html' as games with context %}
{{- common.head() }}
{{ common.nav() }}
<article>
<h1>Open Source Game Clones</h1>
<p>
This site tries to gather <a href="http://en.wikipedia.org/wiki/Open_source">open-source</a>
remakes of great old games in one place. If you think that
something is missing from the list - please go to
our <a href="http://github.com/opengaming/osgameclones/">GitHub
repository</a> and create an issue or even a pull request!
</p>
<p>
Since all these projects are open-source you can help them and make this
world a better place. Or at least you can play something to appreciate the
effort people put in them.
</p>
<p>
Similar resources:
<ul>
<li><a href="https://freegamer.blogspot.com">Free Gamer</a>, a blog dedicated to open source game news</li>
<li><a href="https://bronevichok.ru/ttygames/">Unix ASCII games</a>, a list of opensource text-based games</li>
<li><a href="https://trilarion.github.io/opensourcegames/">List of Open Source Games</a>, list of open source games in mature/beta state</li>
<li><a href="https://github.com/leereilly/games">Games on GitHub</a>, list of open source games and game-related projects that can be found on GitHub</li>
<li><a href="https://libregamewiki.org/Main_Page">LibreGameWiki</a>, the free gaming encyclopedia</li>
</ul>
</p>
<p>
A <span class="tag type" data-name="remake">Remake</span> is a game where the executable and sometimes the assets as well are remade open source. Some of these games aren't exact remakes but evolution of original ones, which were eventually open sourced.
<br />
A <span class="tag type" data-name="clone">Clone</span> is a game which is very similar to or heavily inspired by a game or series.
<br />
A <span class="tag type" data-name="similar">Similar</span> game is one which has similar gameplay but is not a clone.
<br />
A <span class="tag type" data-name="tool">Tool</span> is not a game, but something that assists in playing or modding the game, such as a high resolution patch, or resource extractor.</p>
</article>
<div>
<h2>New and updated games</h2>
<dl>
{% for names, meta, items in site.games %}
{% for game in items %}
{% if game.new %}
{{ games.render_game(names, meta, game) }}
{% endif %}
{% endfor %}
{% endfor %}
</dl>
</div>
<div id="content">
<h2>List of games</h2>
<dl id="list">
{% for names, meta, items in site.games %}
{{ games.render(names, meta, items, 'games') }}
{% endfor %}
</dl>
<dl id="sorted"></dl>
</div>
{{ common.footer() -}}