index.html 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {%- import 'templates/common.html' as common with context %}
  2. {%- import 'templates/games.html' as games with context %}
  3. {{- common.head() }}
  4. {{ common.nav() }}
  5. <article>
  6. <h1>Open Source Game Clones</h1>
  7. <p>
  8. This site tries to gather <a href="http://en.wikipedia.org/wiki/Open_source">open-source</a>
  9. or <a href="https://en.wikipedia.org/wiki/Source-available_software">source-available</a>
  10. remakes of great old games in one place. If you think that
  11. something is missing from the list - please go to
  12. our <a href="http://github.com/opengaming/osgameclones/">GitHub
  13. repository</a> and create an issue or even a pull request!
  14. </p>
  15. <p>
  16. Since all these projects are open-source you can help them and make this
  17. world a better place. Or at least you can play something to appreciate the
  18. effort people put in them.
  19. </p>
  20. <p>
  21. Similar resources:
  22. </p>
  23. <ul>
  24. <li><a href="https://freegamer.blogspot.com">Free Gamer</a>, a blog dedicated to open source game news</li>
  25. <li><a href="https://bronevichok.ru/ttygames/">Unix ASCII games</a>, a list of opensource text-based games</li>
  26. <li><a href="https://trilarion.github.io/opensourcegames/">List of Open Source Games</a>, list of open source games in mature/beta state</li>
  27. <li><a href="https://github.com/michelpereira/awesome-open-source-games">Awesome Open Source Games</a>, list of open source games and game-related projects that can be found on GitHub</li>
  28. <li><a href="https://libregamewiki.org/Main_Page">LibreGameWiki</a>, the free gaming encyclopedia</li>
  29. </ul>
  30. <p>
  31. 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&#39;t exact remakes but evolution of original ones, which were eventually open sourced.
  32. <br />
  33. 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.
  34. <br />
  35. An <span class="tag type" data-name="official">Official</span> project is the official source code release for a game that was formerly closed-source, maintained by the original creators and has minimal changes.
  36. <br />
  37. A <span class="tag type" data-name="similar">Similar</span> game is one which has similar gameplay but is not a clone.
  38. <br />
  39. 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.
  40. </p>
  41. </article>
  42. <div>
  43. <h2>
  44. New and updated games
  45. <a class="add-link" href="/feed.xml"><i class="fas fa-rss"></i></a>
  46. </h2>
  47. <dl>
  48. {% for names, meta, clone in site.new_games.values() %}
  49. {{ games.render_clone(names, meta, clone, true, false) }}
  50. {% endfor %}
  51. </dl>
  52. </div>
  53. <div id="content">
  54. <h2>
  55. List of games
  56. <a class="add-link" href="/add_game.html" target="_blank"><i class="far fa-edit"></i>Add Game</a>
  57. <a class="add-link" href="/add_original.html" target="_blank"><i class="far fa-edit"></i>Add Original Game</a>
  58. </h2>
  59. <dl id="list">
  60. {% for game in site.games %}
  61. {{ games.render(game, false) }}
  62. {% endfor %}
  63. </dl>
  64. <dl id="sorted"></dl>
  65. </div>
  66. {{ common.footer() -}}