2024-08-23 10:10:39 +02:00
|
|
|
<!--
|
|
|
|
foss_alternatives website
|
|
|
|
Copyright (C) 2024 interstellar_development
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as
|
|
|
|
published by the Free Software Foundation, either version 3 of the
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
-->
|
2024-06-18 11:29:04 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>Game List</title>
|
|
|
|
<link rel="stylesheet" href="../list.css">
|
2024-06-19 09:11:52 +02:00
|
|
|
<script src="../header-folder.js" type="text/javascript" defer></script>
|
2024-06-19 08:58:57 +02:00
|
|
|
<script src="../burger.js" type="text/javascript" defer></script>
|
2024-06-18 11:29:04 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
2024-06-19 08:58:57 +02:00
|
|
|
<header-component></header-component>
|
2024-06-18 12:26:48 +02:00
|
|
|
<article>
|
|
|
|
<h1>Game List</h1>
|
|
|
|
<h2>Fully Free</h2>
|
|
|
|
<ul class="fully-free">
|
2024-09-03 17:20:26 +02:00
|
|
|
<a href="https://xonotic.org/" target="_blank" class="item-link">
|
|
|
|
<li>Xonotic</li>
|
|
|
|
</a>
|
|
|
|
<a href="https://freedoom.github.io" target="_blank" class="item-link">
|
|
|
|
<li>Freedoom</li>
|
|
|
|
</a>
|
|
|
|
<a href="https://openarena.ws/smfnews.php" target="_blank" class="item-link">
|
|
|
|
<li>OpenArena</li>
|
|
|
|
</a>
|
|
|
|
</ul>
|
2024-06-18 12:26:48 +02:00
|
|
|
|
|
|
|
<h2>Non-Free Assets</h2>
|
|
|
|
<ul class="non-free-assets">
|
2024-09-03 17:20:26 +02:00
|
|
|
<a href="https://assault.cubers.net/" target="_blank" class="item-link">
|
|
|
|
<li>AssaultCube</li>
|
|
|
|
</a>
|
|
|
|
<a href="http://sauerbraten.org/" target="_blank" class="item-link">
|
|
|
|
<li>Cube 2: Sauerbraten</li>
|
|
|
|
</a>
|
|
|
|
<a href="https://store.steampowered.com/app/2280/DOOM__DOOM_II/" target="_blank" class="item-link">
|
|
|
|
<li>Doom</li>
|
|
|
|
</a>
|
2024-06-18 12:26:48 +02:00
|
|
|
</ul>
|
|
|
|
</article>
|
2024-06-18 11:29:04 +02:00
|
|
|
</body>
|
|
|
|
</html>
|