opensourcegames/docs/index.html

36 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Open Source Games List</title>
<link rel="stylesheet" type="text/css" href="vanilla-dataTables.css">
<script type="text/javascript" src="vanilla-dataTables.js"></script>
</head>
<body>
<h1>Open source games collection</h1>
<p>This collection is managed on <a href="https://github.com/Trilarion/opensourcegames">Github</a> (development <a href="https://trilarion.blogspot.com/search/label/osgames">blog</a>).</p>
<ul>
<li>Over 400 entries. About 60% of them are mature and about 40% are currently inactive.</li>
<li>Mostly written in C++, C, Java, Python, Lua, Javascript or PHP.</li>
<li>Mostly published under GPL-2.0/3.0, MIT or Apache-2.0 license.</li>
<li>Tagged with keywords like: TBS, RTS, roguelike, remake, MMO, ..</li>
</ul>
<p>Columns in the table can be sorted and the rows can be filtered using the "Search" field.</p>
<div class="container">
<table class="table"></table>
</div>
<script>
var dataTable = new DataTable("table", {
perPage: 20,
perPageSelect: [10, 20, 50],
fixedHeight: true,
ajax: "data.json",
footer: true
});
dataTable.on('datatable.init', function(args) {
dataTable.columns().sort(1);
});
</script>
Dynamic table powered by <a href="https://github.com/Mobius1/Vanilla-DataTables">Vanilla-DataTables</a>.
</body>
</html>