dynamic html table with javascript, more screenshots

This commit is contained in:
Trilarion 2021-10-15 18:06:09 +02:00
parent 8486b618e1
commit df80f70125
125 changed files with 14005 additions and 238 deletions

View File

@ -7,10 +7,13 @@
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>{{ base['title'] }}</title>
<link rel="stylesheet" href="{{ base['url_to'](['css', 'bulma.min.css']) }}">
<link rel="stylesheet" href="{{ base['url_to'](['css', 'osgl.min.css']) }}">
{%- for css in base['css'] %}
<link rel="stylesheet" href="{{ base['url_to'](['css', css]) }}">
{%- endfor %}
<link rel="icon" type="image/svg+xml" href="{{ base['url_to'](['favicon.svg']) }}">
<script type="text/javascript" src="{{ base['url_to'](['js', 'osgl.js']) }}"></script>
{%- for js in base['js'] %}
<script type="text/javascript" src="{{ base['url_to'](['js', js]) }}"></script>
{%- endfor %}
</head>
<body>
{#- navigation bar -#}

View File

@ -0,0 +1,173 @@
.dataTable-wrapper.no-header .dataTable-container {
border-top: 1px solid #d9d9d9;
}
.dataTable-wrapper.no-footer .dataTable-container {
border-bottom: 1px solid #d9d9d9;
}
.dataTable-top,
.dataTable-bottom {
padding: 8px 10px;
}
.dataTable-top > nav:first-child,
.dataTable-top > div:first-child,
.dataTable-bottom > nav:first-child,
.dataTable-bottom > div:first-child {
float: left;
}
.dataTable-top > nav:last-child,
.dataTable-top > div:last-child,
.dataTable-bottom > nav:last-child,
.dataTable-bottom > div:last-child {
float: right;
}
.dataTable-selector {
padding: 6px;
}
.dataTable-input {
padding: 6px 12px;
}
.dataTable-info {
margin: 7px 0;
}
/* PAGER */
.dataTable-pagination ul {
margin: 0;
padding-left: 0;
}
.dataTable-pagination li {
list-style: none;
float: left;
}
.dataTable-pagination a {
border: 1px solid transparent;
float: left;
margin-left: 2px;
padding: 6px 12px;
position: relative;
text-decoration: none;
color: #333;
}
.dataTable-pagination a:hover {
background-color: #d9d9d9;
}
.dataTable-pagination .active a,
.dataTable-pagination .active a:focus,
.dataTable-pagination .active a:hover {
background-color: #d9d9d9;
cursor: default;
}
.dataTable-pagination .ellipsis a,
.dataTable-pagination .disabled a,
.dataTable-pagination .disabled a:focus,
.dataTable-pagination .disabled a:hover {
cursor: not-allowed;
}
.dataTable-pagination .disabled a,
.dataTable-pagination .disabled a:focus,
.dataTable-pagination .disabled a:hover {
cursor: not-allowed;
opacity: 0.4;
}
.dataTable-pagination .pager a {
font-weight: bold;
}
/* TABLE */
.dataTable-table {
max-width: 100%;
width: 100%;
border-spacing: 0;
border-collapse: separate;
}
.dataTable-table > tbody > tr > td,
.dataTable-table > tbody > tr > th,
.dataTable-table > tfoot > tr > td,
.dataTable-table > tfoot > tr > th,
.dataTable-table > thead > tr > td,
.dataTable-table > thead > tr > th {
vertical-align: top;
padding: 8px 10px;
}
.dataTable-table > thead > tr > th {
vertical-align: bottom;
text-align: left;
border-bottom: 1px solid #d9d9d9;
}
.dataTable-table > tfoot > tr > th {
vertical-align: bottom;
text-align: left;
border-top: 1px solid #d9d9d9;
}
.dataTable-table th {
vertical-align: bottom;
text-align: left;
}
.dataTable-table th a {
text-decoration: none;
color: inherit;
}
.dataTable-sorter {
display: inline-block;
height: 100%;
position: relative;
width: 100%;
}
.dataTable-sorter::before,
.dataTable-sorter::after {
content: "";
height: 0;
width: 0;
position: absolute;
right: 4px;
border-left: 4px solid transparent;
border-right: 4px solid transparent;
opacity: 0.2;
}
.dataTable-sorter::before {
border-top: 4px solid #000;
bottom: 0px;
}
.dataTable-sorter::after {
border-bottom: 4px solid #000;
border-top: 4px solid transparent;
top: 0px;
}
.asc .dataTable-sorter::after,
.desc .dataTable-sorter::before {
opacity: 0.6;
}
.dataTables-empty {
text-align: center;
}
.dataTable-top::after, .dataTable-bottom::after {
clear: both;
content: " ";
display: table;
}

View File

@ -7,6 +7,14 @@ Sitemaps is not needed, only for large projects with lots of JavaScript und many
"""
# TODO simple data table with columns: name (homepage as link), keywords (at least essential ones), inspiration, language, code license
# TODO languages: ? at the end sort
# TODO too many spans, especially for text (maybe just plain text), also text with URLs inside is difficult (but why)
# TODO keywords: content, multiplayer replace by icons (open, commercial (dollar signs))
# TODO most people only come to the main page, put more information there (direct links to genres, ...)
# TODO put more explanations on the category pages and the categories (number and short sentences)
@ -31,6 +39,13 @@ Sitemaps is not needed, only for large projects with lots of JavaScript und many
# TODO games: platform icons and mature, state larger (but maybe not on mobile)
# TODO games: platform information larger printed, keyword tags underlined to indicate links
# TODO devs: icons mark as links (how? ask on ux.stackexchange.com?)
# TODO everywhere: better link replacements
# TODO game: first homepage link bold
# TODO statistics: better and more statistics with links where possible
# TODO statistics: with nice graphics (pie charts in SVG) with matplotlib
# TODO statistics: get it from common statistics generator
@ -89,6 +104,7 @@ import shutil
import math
import datetime
import time
import json
from functools import partial
from utils import osg, constants as c, utils, osg_statistics as stat, osg_parse
from jinja2 import Environment, FileSystemLoader
@ -172,7 +188,7 @@ non_game_category_names = {
'tool': 'Tools',
'framework': 'Frameworks',
'library': 'Libraries',
'game engine': 'Game Engine'
'game engine': 'Game Engines'
}
# we check the output html structure every time
@ -842,6 +858,37 @@ def add_screenshot_information(entries):
entry['screenshots'] = screenshots
def create_table_json_data(entries):
"""
We assume that everything including internal is setup correctly.
Columns are Title, Link (entry, first homepage), State, Essential Keywords, Language, License
:param entries:
:return:
"""
# create json structure
db = {'headings': ['Title', 'State', 'Tags', 'Platform', 'Language', 'License']}
data = []
for entry in entries:
title = '<a href="{}">{}</a> (<a href="{}">Entry</a>)'.format(entry['Home'][0], entry['Title'], url_to([], entry['href']))
state = ', '.join(entry['State'])
tags = entry['Keyword']
tags = [tag for tag in tags if tag in c.recommended_keywords]
tags = ', '.join(tags)
platform = entry.get('Platform', ['-'])
platform = ', '.join(platform)
language = ', '.join(entry['Code language'])
license = [x[-1] for x in entry['Code license']]
license = ', '.join(license)
data.append([title, state, tags, platform, language, license])
data.sort(key=lambda x: str.casefold(x[0]))
db['data'] = data
# write out
text = json.dumps(db, indent=1)
os.makedirs(c.web_data_path, exist_ok=True)
utils.write_text(os.path.join(c.web_data_path, 'entries.json'), text)
def generate(entries, inspirations, developers):
"""
Regenerates the whole static website given an already imported set of entries, inspirations and developers.
@ -874,6 +921,9 @@ def generate(entries, inspirations, developers):
# set external links up
add_license_links_to_entries(games)
# create entries.json for the table
create_table_json_data(entries)
# sort into categories
sorter = lambda item, category: category == item['letter']
games_by_alphabet = sort_into_categories(games, extended_alphabet, sorter)
@ -893,7 +943,9 @@ def generate(entries, inspirations, developers):
# base dictionary
base = {
'title': 'OSGL',
'creation-date': datetime.datetime.now(datetime.timezone.utc).strftime('%Y-%m-%d %H:%M')
'creation-date': datetime.datetime.now(datetime.timezone.utc).strftime('%Y-%m-%d %H:%M'),
'css': ['bulma.min.css', 'osgl.min.css'],
'js': ['osgl.js']
}
# copy css and js
@ -925,16 +977,18 @@ def generate(entries, inspirations, developers):
# index.html
base['active_nav'] = 'index'
index = {'subtitle': make_text('Contains information about {} open source games and {} frameworks/tools.'.format(len(games), len(non_games))) }
index = {'subtitle': make_text('Contains information about {} open source games and {} game engines/tools.'.format(len(games), len(non_games))) }
template = environment.get_template('index.jinja')
write(template.render(index=index), ['index.html'])
# contribute page
base['title'] = 'OSGL | Contributions'
base['active_nav'] = 'contribute'
template = environment.get_template('contribute.jinja')
write(template.render(), ['contribute.html'])
# statistics page in statistics folder
base['title'] = 'OSGL | Statistics'
base['url_to'] = partial(url_to, statistics_path)
base['active_nav'] = 'statistics'
@ -960,6 +1014,7 @@ def generate(entries, inspirations, developers):
write(template.render(data=data), statistics_index_path)
# non-games folder
base['title'] = 'OSGL | Game engines, frameworks, tools'
base['url_to'] = partial(url_to, non_games_path)
base['active_nav'] = 'frameworks'
@ -985,6 +1040,7 @@ def generate(entries, inspirations, developers):
write(template_listing_entries.render(listing=listing), non_games_path + ['{}.html'.format(keyword)])
# games folder
base['title'] = 'OSGL | Games | Alphabetical'
base['url_to'] = partial(url_to, games_path)
base['active_nav'] = 'games'
@ -999,7 +1055,7 @@ def generate(entries, inspirations, developers):
# generate games index
index = divide_in_three_columns_and_transform(games_by_alphabet, game_index)
index['title'] = make_text('Open source games')
index['subtitle'] = make_text('Alphabetical index of informations about {} games'.format(len(games)))
index['subtitle'] = [make_text('Alphabetical index of informations about {} games (or see the '.format(len(games))), make_url(['table.html'], 'table'), ')']
index['categories'] = extended_alphabet
index['category-names'] = extended_alphabet_names
index['category-icons'] = {}
@ -1009,10 +1065,11 @@ def generate(entries, inspirations, developers):
write(template_categorical_index.render(index=index), games_index_path)
# genres
base['title'] = 'OSGL | Games | Genres'
base['active_nav'] = ['filter', 'genres']
index = divide_in_three_columns_and_transform(games_by_genre, game_index)
index['title'] = make_text('Open source games')
index['subtitle'] = make_text('Index by game genre')
index['subtitle'] = [make_text('Index by game genre (or see the '), make_url(['table.html'], 'table'), ')']
index['categories'] = genres
index['category-names'] = {k: make_text(k) for k in index['categories']}
index['category-icons'] = {k: make_icon(genre_icon_map[k]) for k in index['categories'] if k in genre_icon_map}
@ -1022,10 +1079,11 @@ def generate(entries, inspirations, developers):
write(template_categorical_index.render(index=index), games_by_genres_path)
# games by language
base['title'] = 'OSGL | Games | Programming language'
base['active_nav'] = ['filter', 'code language']
index = divide_in_three_columns_and_transform(games_by_language, game_index)
index['title'] = 'Open source games and frameworks'
index['subtitle'] = make_text('Index by programming language')
index['subtitle'] = [make_text('Index by programming language (or see the '), make_url(['table.html'], 'table'), ')']
index['categories'] = c.known_languages
index['category-names'] = {k:k for k in index['categories']}
index['category-icons'] = {}
@ -1035,10 +1093,11 @@ def generate(entries, inspirations, developers):
write(template_categorical_index.render(index=index), games_by_language_path)
# games by platform
base['title'] = 'OSGL | Games | Supported Platform'
base['active_nav'] = ['filter', 'platforms']
index = divide_in_three_columns_and_transform(games_by_platform, game_index)
index['title'] = 'Open source games and frameworks'
index['subtitle'] = make_text('Index by supported platform')
index['subtitle'] = [make_text('Index by supported platform (or see the '), make_url(['table.html'], 'table'), ')']
index['categories'] = c.valid_platforms + ('Unspecified',)
index['category-names'] = {k: make_text(k) for k in index['categories']}
index['category-icons'] = {k: make_icon(platform_icon_map[k]) for k in index['categories']}
@ -1049,6 +1108,7 @@ def generate(entries, inspirations, developers):
write(template_categorical_index.render(index=index), games_by_platform_path)
# top 50 games
base['title'] = 'OSGL | Games | GitHub Top 50'
base['active_nav'] = ['filter', 'top50']
# there are no other games coming afterwards, can actually number them
for index, game in enumerate(top50_games):
@ -1061,6 +1121,7 @@ def generate(entries, inspirations, developers):
write(template_listing_entries.render(listing=listing), games_top50_path)
# inspirations folder
base['title'] = 'OSGL | Inspirational games'
base['url_to'] = partial(url_to, inspirations_path)
base['active_nav'] = 'inspirations'
@ -1088,6 +1149,7 @@ def generate(entries, inspirations, developers):
write(template_listing_inspirations.render(listing=listing), inspirations_path + ['{}.html'.format(letter.capitalize())])
# developers folder
base['title'] = 'OSGL | Games | Developers'
base['url_to'] = partial(url_to, developers_path)
base['active_nav'] = 'developers'
@ -1112,6 +1174,15 @@ def generate(entries, inspirations, developers):
index['category-infos'] = {}
write(template_categorical_index.render(index=index), developers_index_path)
# dynamic table (is in top level folder)
base['title'] = 'OSGL | Entries | Table'
base['url_to'] = partial(url_to, [])
base['css'].append('simple-datatables.css')
base['js'].append('simple-datatables.js')
base['active_nav'] = []
template = environment.get_template('table.jinja')
write(template.render(), ['table.html'])
if __name__ == "__main__":

File diff suppressed because one or more lines are too long

View File

@ -1,3 +1,29 @@
{% extends "base.jinja" %}
{% block content %}
<div class="container">
<div class="box">
<div class="block">
<p class="title is-4">Table</p>
<p class="subtitle is-6">Sortable and searchable.</p>
</div>
</div>
<table class="table is-narrow is-hoverable"></table>
</div>
<script>
fetch("data/entries.json").then(response => response.json()).then(data => {
let table = new simpleDatatables.DataTable(".table", {
perPage: 50,
perPageSelect: [30, 50, 100],
footer: true,
data: {
headings: data["headings"],
data: data["data"]
},
});
table.on('datatable.init', function(args) {
table.columns().sort(0);
});
})
</script>
{% endblock %}

View File

@ -42,6 +42,7 @@ def check_validity_backlog():
if r.is_redirect or r.history:
print('{} redirected to {}, {}'.format(url, r.url, r.history))
def create_toc(title, file, entries):
"""
@ -697,15 +698,6 @@ class EntriesMaintainer:
print('statistics updated')
def update_html(self):
"""
"""
if not self.entries:
print('entries not yet loaded')
return
print('HTML not updated')
def update_repos(self):
"""
export to json for local repository update of primary repos
@ -905,7 +897,6 @@ if __name__ == "__main__":
'Clean backlog': m.clean_backlog,
'Update Readme and TOCs': m.update_readme_tocs,
'Update statistics': m.update_statistics,
'Update HTML': m.update_html,
'Update repository list': m.update_repos,
'Special': m.special_ops,
'Complete run': m.complete_run

View File

@ -7,15 +7,17 @@ import configparser
# paths
root_path = os.path.realpath(os.path.join(os.path.dirname(__file__), os.path.pardir, os.path.pardir))
code_path = os.path.join(root_path, 'code')
web_template_path = os.path.join(code_path, 'html')
entries_path = os.path.join(root_path, 'entries')
tocs_path = os.path.join(entries_path, 'tocs')
code_path = os.path.join(root_path, 'code')
web_path = os.path.join(root_path, 'docs')
screenshots_path = os.path.join(entries_path, 'screenshots')
web_template_path = os.path.join(code_path, 'html')
web_path = os.path.join(root_path, 'docs')
web_css_path = os.path.join(web_path, 'css')
web_js_path = os.path.join(web_path, 'js')
web_screenshots_path = os.path.join(web_path, 'screenshots')
web_data_path = os.path.join(web_path, 'data')
private_properties_file = os.path.join(root_path, 'private.properties')
inspirations_file = os.path.join(root_path, 'inspirations.md')

View File

@ -657,9 +657,13 @@ def write_screenshots_overview(overview):
text = utils.read_text(c.screenshots_file)
text = text.split('\n# ')[0] + '\n'
for name, a in overview.items():
# write out each entry sorted by name
for name in sorted(overview.keys()):
a = overview[name]
t = '# {}\n\n'.format(name)
for id, ai in a.items():
# write out each line sorted by id
for id in sorted(a.keys()):
ai = a[id]
if ai[-1] is None:
ai = ai[:-1]
t += ' '.join(['{:02d}'.format(id)] + [str(x) for x in ai]) + '\n'

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Contributions</title>
<link rel="stylesheet" href="css/bulma.min.css">
<link rel="stylesheet" href="css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="favicon.svg">
@ -81,7 +81,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -0,0 +1,173 @@
.dataTable-wrapper.no-header .dataTable-container {
border-top: 1px solid #d9d9d9;
}
.dataTable-wrapper.no-footer .dataTable-container {
border-bottom: 1px solid #d9d9d9;
}
.dataTable-top,
.dataTable-bottom {
padding: 8px 10px;
}
.dataTable-top > nav:first-child,
.dataTable-top > div:first-child,
.dataTable-bottom > nav:first-child,
.dataTable-bottom > div:first-child {
float: left;
}
.dataTable-top > nav:last-child,
.dataTable-top > div:last-child,
.dataTable-bottom > nav:last-child,
.dataTable-bottom > div:last-child {
float: right;
}
.dataTable-selector {
padding: 6px;
}
.dataTable-input {
padding: 6px 12px;
}
.dataTable-info {
margin: 7px 0;
}
/* PAGER */
.dataTable-pagination ul {
margin: 0;
padding-left: 0;
}
.dataTable-pagination li {
list-style: none;
float: left;
}
.dataTable-pagination a {
border: 1px solid transparent;
float: left;
margin-left: 2px;
padding: 6px 12px;
position: relative;
text-decoration: none;
color: #333;
}
.dataTable-pagination a:hover {
background-color: #d9d9d9;
}
.dataTable-pagination .active a,
.dataTable-pagination .active a:focus,
.dataTable-pagination .active a:hover {
background-color: #d9d9d9;
cursor: default;
}
.dataTable-pagination .ellipsis a,
.dataTable-pagination .disabled a,
.dataTable-pagination .disabled a:focus,
.dataTable-pagination .disabled a:hover {
cursor: not-allowed;
}
.dataTable-pagination .disabled a,
.dataTable-pagination .disabled a:focus,
.dataTable-pagination .disabled a:hover {
cursor: not-allowed;
opacity: 0.4;
}
.dataTable-pagination .pager a {
font-weight: bold;
}
/* TABLE */
.dataTable-table {
max-width: 100%;
width: 100%;
border-spacing: 0;
border-collapse: separate;
}
.dataTable-table > tbody > tr > td,
.dataTable-table > tbody > tr > th,
.dataTable-table > tfoot > tr > td,
.dataTable-table > tfoot > tr > th,
.dataTable-table > thead > tr > td,
.dataTable-table > thead > tr > th {
vertical-align: top;
padding: 8px 10px;
}
.dataTable-table > thead > tr > th {
vertical-align: bottom;
text-align: left;
border-bottom: 1px solid #d9d9d9;
}
.dataTable-table > tfoot > tr > th {
vertical-align: bottom;
text-align: left;
border-top: 1px solid #d9d9d9;
}
.dataTable-table th {
vertical-align: bottom;
text-align: left;
}
.dataTable-table th a {
text-decoration: none;
color: inherit;
}
.dataTable-sorter {
display: inline-block;
height: 100%;
position: relative;
width: 100%;
}
.dataTable-sorter::before,
.dataTable-sorter::after {
content: "";
height: 0;
width: 0;
position: absolute;
right: 4px;
border-left: 4px solid transparent;
border-right: 4px solid transparent;
opacity: 0.2;
}
.dataTable-sorter::before {
border-top: 4px solid #000;
bottom: 0px;
}
.dataTable-sorter::after {
border-bottom: 4px solid #000;
border-top: 4px solid transparent;
top: 0px;
}
.asc .dataTable-sorter::after,
.desc .dataTable-sorter::before {
opacity: 0.6;
}
.dataTables-empty {
text-align: center;
}
.dataTable-top::after, .dataTable-bottom::after {
clear: both;
content: " ";
display: table;
}

13204
docs/data/entries.json Normal file

File diff suppressed because it is too large Load Diff

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Developers</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -636,7 +636,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Developers</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -10095,7 +10095,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Developers</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -4884,7 +4884,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Developers</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -5541,7 +5541,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Developers</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -7242,7 +7242,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Developers</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -3615,7 +3615,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Developers</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -3291,7 +3291,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Developers</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -3579,7 +3579,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Developers</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -2526,7 +2526,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Developers</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -1824,7 +1824,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Developers</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -8916,7 +8916,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Developers</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -4191,7 +4191,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Developers</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -3975,7 +3975,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Developers</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -10770,7 +10770,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Developers</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -3507,7 +3507,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Developers</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -1644,7 +1644,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Developers</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -5100,7 +5100,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Developers</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -465,7 +465,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Developers</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -6126,7 +6126,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Developers</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -9006,7 +9006,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Developers</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -6216,7 +6216,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Developers</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -600,7 +600,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Developers</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -2364,7 +2364,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Developers</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -1770,7 +1770,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Developers</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -771,7 +771,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Developers</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -978,7 +978,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Developers</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -1293,7 +1293,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Developers</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -1819,7 +1819,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Game engines, frameworks, tools</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -1583,7 +1583,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Game engines, frameworks, tools</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -42,7 +42,7 @@
</div>
</nav>
<div class="container">
<div class="box"><p class="title is-4">Game Engine</p><p class="subtitle is-6"><a href="index.html">Index</a></p></div>
<div class="box"><p class="title is-4">Game Engines</p><p class="subtitle is-6"><a href="index.html">Index</a></p></div>
<div id="3dworld" class="box"><nav class="level">
<div class="level-left">
<div class="level-item title is-4">3DWorld</div>
@ -2663,7 +2663,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Game engines, frameworks, tools</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -45,7 +45,7 @@
<div class="box"><div class="block">
<p class="title is-4">Open source game frameworks/tools</p><p class="subtitle is-6">Index of 307 game frameworks/tools</p></div><div class="tags">
<span class="tag is-white is-size-5"><a href="#framework" class="has-text-weight-semibold">Frameworks</a> <span class="has-text-grey">(96)</span>
</span><span class="tag is-white is-size-5"><a href="#game engine" class="has-text-weight-semibold">Game Engine</a> <span class="has-text-grey">(165)</span>
</span><span class="tag is-white is-size-5"><a href="#game engine" class="has-text-weight-semibold">Game Engines</a> <span class="has-text-grey">(165)</span>
</span><span class="tag is-white is-size-5"><a href="#library" class="has-text-weight-semibold">Libraries</a> <span class="has-text-grey">(16)</span>
</span><span class="tag is-white is-size-5"><a href="#tool" class="has-text-weight-semibold">Tools</a> <span class="has-text-grey">(49)</span>
</span>
@ -108,7 +108,7 @@
<p class="is-size-7 has-text-right"><a href="#">Back to top</a></p>
</div>
<div id="game engine" class="box">
<div class="block"><span class="title is-4">Game Engine</span></div>
<div class="block"><span class="title is-4">Game Engines</span></div>
<div class="columns"><div class="column">
<ul><li><span class="has-text-weight-semibold"><a href="game engine.html#3dworld">3DWorld</a></span></li><li><a href="game engine.html#adventure_engine">adventure engine</a>
<span class="is-light is-size-7">(inactive since 2013)</span></li><li><a href="framework.html#aether3d">Aether3D</a>
@ -290,7 +290,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Game engines, frameworks, tools</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -301,7 +301,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Game engines, frameworks, tools</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -790,7 +790,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Alphabetical</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -108,7 +108,7 @@
</nav><div class="block">
<div class="tags has-addons"><a href="genres.html#puzzle" title="puzzle games" class="tag is-info">puzzle</a>
<span class="tag is-light">sliding blocks</span></div>
</div><div class="block">Homepages: <a href="https://play2048.co/">play2048.co</a>, <a href="https://en.wikipedia.org/wiki/2048_(video_game)">2048<span class="icon has-text-black"><i class="icon-wikipedia"></i></span></a><br>Play online: <a href="https://play2048.co/">play2048.co</a><br></div><nav class="level"><div class="level-item"><a href="https://cloud.githubusercontent.com/assets/1175750/8614312/280e5dc2-26f1-11e5-9f1f-5891c3ca8b26.png"><img src="../screenshots/2048_01.jpg" width="103" height="128" alt=""></a></div></nav><div class="block is-size-7">
</div><div class="block">Homepage: <a href="https://play2048.co/">play2048.co</a><br>Media: <a href="https://en.wikipedia.org/wiki/2048_(video_game)">2048<span class="icon has-text-black"><i class="icon-wikipedia"></i></span></a><br>Play online: <a href="https://play2048.co/">play2048.co</a><br></div><nav class="level"><div class="level-item"><a href="https://cloud.githubusercontent.com/assets/1175750/8614312/280e5dc2-26f1-11e5-9f1f-5891c3ca8b26.png"><img src="../screenshots/2048_01.jpg" width="103" height="128" alt=""></a></div></nav><div class="block is-size-7">
<span class="has-text-weight-semibold">Details</span><br>Code languages: <a href="languages.html#javascript">JavaScript</a>, <a href="languages.html#java">Java</a><br>Code licenses: <a href="https://en.wikipedia.org/wiki/MIT_License">MIT</a><br>Code repositories: <a href="https://github.com/gabrielecirulli/2048.git">gabrielecirulli/2048.git<span class="icon has-text-black"><i class="icon-github"></i></span></a>(since 2014, <span class="icon has-text-black" title="top rated"><i class="icon-star"></i></span>), <a href="https://github.com/tpcstld/2048.git @add">tpcstld/2048.git @add<span class="icon has-text-black"><i class="icon-github"></i></span></a>(since 2014, <span class="icon has-text-black" title="top rated"><i class="icon-star"></i></span>)<br>Assets licenses: <a href="https://en.wikipedia.org/wiki/MIT_License">MIT</a><br>
<span class="is-size-7">Build system: </span>
<span class="is-size-7">Rake</span><br>Developers: <a href="../developers/G.html#gabriele_cirulli">Gabriele Cirulli</a>, <a href="../developers/J.html#jerry_jiang">Jerry Jiang</a>, <a href="../developers/L.html#laurent">Laurent</a>, <a href="../developers/L.html#lee_reilly">Lee Reilly</a>, <a href="../developers/P.html#paul_woitaschek">Paul Woitaschek</a>, <a href="../developers/S.html#sigod">sigod</a>, <a href="../developers/T.html#tim_petricola">Tim Petricola</a><br></div><div class="block is-size-7 has-text-right">
@ -258,7 +258,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Alphabetical</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -1093,7 +1093,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Alphabetical</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -1094,7 +1094,7 @@
</nav><div class="block">
<div class="tags has-addons"><a href="genres.html#adventure" title="adventure games" class="tag is-info">adventure</a><a href="genres.html#role playing" title="role playing games" class="tag is-info">role playing</a>
<span class="tag is-light">multiplayer online + massive</span></div>
</div><div class="block">Homepage: <a href="https://web.archive.org/web/20210714055307/http://browserquest.herokuapp.com/">Archive: 20210714055307/http://browserquest.herokuapp.com</a><br>Media: <a href="https://en.wikipedia.org/wiki/BrowserQuest">BrowserQuest<span class="icon has-text-black"><i class="icon-wikipedia"></i></span></a><br></div><div class="block is-size-7">
</div><div class="block">Homepage: <a href="https://web.archive.org/web/20210714055307/http://browserquest.herokuapp.com/">Archive: 20210714055307/http://browserquest.herokuapp.com</a><br>Media: <a href="https://en.wikipedia.org/wiki/BrowserQuest">BrowserQuest<span class="icon has-text-black"><i class="icon-wikipedia"></i></span></a><br></div><nav class="level"><div class="level-item"><a href="None"><img src="../screenshots/browserquest_01.jpg" width="188" height="128" alt=""></a></div></nav><div class="block is-size-7">
<span class="has-text-weight-semibold">Details</span><br>Code languages: <a href="languages.html#javascript">JavaScript</a><br>Code licenses: <a href="https://en.wikipedia.org/wiki/Mozilla_Public_License">MPL-2.0</a><br>Code repositories: <a href="https://github.com/mozilla/BrowserQuest.git">mozilla/BrowserQuest.git<span class="icon has-text-black"><i class="icon-github"></i></span></a>(since 2011, <span class="icon has-text-black" title="top rated"><i class="icon-star"></i></span>)<br>Developers: <a href="../developers/F.html#franck_lecollinet">Franck Lecollinet</a>, <a href="../developers/G.html#guillaume_lecollinet">Guillaume Lecollinet</a>, <a href="../developers/M.html#myles_recny">Myles Recny</a><br></div><div class="block is-size-7 has-text-right">
<a href="../contribute.html#games" title="Contribution guide" class="mr-2">Improve</a>
<a href="https://raw.githubusercontent.com/Trilarion/opensourcegames/master/entries/browserquest.md" title="Text based entry on Github">Raw entry</a>
@ -1205,7 +1205,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Alphabetical</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -788,7 +788,7 @@
<div class="tags has-addons"><a href="genres.html#simulation" title="simulation games" class="tag is-info">simulation</a>
<span class="tag is-light">clone</span>
<span class="tag is-light">content open</span></div>
</div><div class="block">Homepage: <a href="https://aeplay.org/citybound">aeplay.org/citybound</a><br>Inspiration: <a href="../inspirations/S.html#simcity">SimCity</a><br>Downloads: <a href="https://aeplay.org/citybound-livebuilds">aeplay.org/citybound-livebuilds</a>, <a href="https://github.com/citybound/citybound/releases">citybound/citybound/releases<span class="icon has-text-black"><i class="icon-github"></i></span></a><br></div><div class="block is-size-7">
</div><div class="block">Homepage: <a href="https://aeplay.org/citybound">aeplay.org/citybound</a><br>Inspiration: <a href="../inspirations/S.html#simcity">SimCity</a><br>Downloads: <a href="https://aeplay.org/citybound-livebuilds">aeplay.org/citybound-livebuilds</a>, <a href="https://github.com/citybound/citybound/releases">citybound/citybound/releases<span class="icon has-text-black"><i class="icon-github"></i></span></a><br></div><nav class="level"><div class="level-item"><a href="https://uploads-ssl.webflow.com/58ef666b690e1f31ad12a43a/5c24208c35af3ace29d8ff05_Screenshot%202018-12-26%20at%2014.39.29.476.png"><img src="../screenshots/citybound_01.jpg" width="225" height="128" alt=""></a></div><div class="level-item"><a href="https://uploads-ssl.webflow.com/58ef666b690e1f31ad12a43a/5c2430cb35af3a5e2bd90d16_microeconomy%20screenshot.png"><img src="../screenshots/citybound_02.jpg" width="226" height="128" alt=""></a></div></nav><div class="block is-size-7">
<span class="has-text-weight-semibold">Details</span><br>Code languages: <a href="languages.html#rust">Rust</a>, <a href="languages.html#javascript">JavaScript</a><br>Code licenses: <a href="https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License">AGPL-3.0</a><br>Code repositories: <a href="https://github.com/citybound/citybound.git">citybound/citybound.git<span class="icon has-text-black"><i class="icon-github"></i></span></a>(since 2016, <span class="icon has-text-black" title="top rated"><i class="icon-star"></i></span>)<br>Developers: <a href="../developers/A.html#anselm_eickhoff">Anselm Eickhoff</a>, <a href="../developers/B.html#ben_wang">Ben Wang</a>, <a href="../developers/M.html#martin_risell_lilja">Martin Risell Lilja</a>, <a href="../developers/O.html#o01eg">O01eg</a>, <a href="../developers/R.html#rasmus_larsen">Rasmus Larsen</a>, <a href="../developers/V.html#vladimir">Vladimir</a><br></div><div class="block is-size-7 has-text-right">
<a href="../contribute.html#games" title="Contribution guide" class="mr-2">Improve</a>
<a href="https://raw.githubusercontent.com/Trilarion/opensourcegames/master/entries/citybound.md" title="Text based entry on Github">Raw entry</a>
@ -1588,7 +1588,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Alphabetical</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -414,7 +414,7 @@
<div class="tags has-addons"><a href="genres.html#action" title="action games" class="tag is-info">action</a><a href="genres.html#remake" title="remake games" class="tag is-info">remake</a>
<span class="tag is-light">content commercial + original required (Diablo 1)</span>
<span class="tag is-light">engine recreation</span></div>
</div><div class="block">Homepage: <a href="https://github.com/diasurgical/devilution">diasurgical/devilution<span class="icon has-text-black"><i class="icon-github"></i></span></a><br>Inspiration: <a href="../inspirations/D.html#diablo">Diablo</a><br></div><div class="block is-size-7">
</div><div class="block">Homepage: <a href="https://github.com/diasurgical/devilution">diasurgical/devilution<span class="icon has-text-black"><i class="icon-github"></i></span></a><br>Inspiration: <a href="../inspirations/D.html#diablo">Diablo</a><br></div><nav class="level"><div class="level-item"><a href="None"><img src="../screenshots/devilution_01.jpg" width="171" height="128" alt=""></a></div></nav><div class="block is-size-7">
<span class="has-text-weight-semibold">Details</span><br>Code languages: <a href="languages.html#c">C</a>, <a href="languages.html#c++">C++</a><br>Code licenses: <a href="https://en.wikipedia.org/wiki/Unlicense">Unlicense</a><br>Code repositories: <a href="https://github.com/diasurgical/devilution.git">diasurgical/devilution.git<span class="icon has-text-black"><i class="icon-github"></i></span></a>(since 2018, <span class="icon has-text-black" title="top rated"><i class="icon-star"></i></span>)<br>
<span class="is-size-7">Build system: </span><a href="https://en.wikipedia.org/wiki/Make_(software)" class="is-size-7">Make</a><br><details><summary>Developers: (16)</summary><a href="../developers/A.html#adam_heinermann">Adam Heinermann</a>, <a href="../developers/A.html#adam_stachowicz">Adam Stachowicz</a>, <a href="../developers/A.html#anders_jenbo">Anders Jenbo</a>, <a href="../developers/A.html#andi">Andi</a>, <a href="../developers/B.html#boristhebrave">BorisTheBrave</a>, <a href="../developers/D.html#dennis_duda">Dennis Duda</a>, <a href="../developers/G.html#gleb_mazovetskiy">Gleb Mazovetskiy</a>, <a href="../developers/J.html#joan_karadimov">Joan Karadimov</a>, <a href="../developers/J.html#justanotherguid">JustAnotherGuid</a>, <a href="../developers/M.html#manuel_k">Manuel K</a>, <a href="../developers/M.html#marco">Marco</a>, <a href="../developers/N.html#nomdenom">nomdenom</a>, <a href="../developers/Q.html#qndel">qndel</a>, <a href="../developers/R.html#robin">Robin</a>, <a href="../developers/S.html#sergey_semushin">Sergey Semushin</a>, <a href="../developers/S.html#squidcc">squidcc</a></details><br></div><div class="block is-size-7 has-text-right">
<a href="../contribute.html#games" title="Contribution guide" class="mr-2">Improve</a>
@ -1239,7 +1239,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Alphabetical</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -598,7 +598,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Alphabetical</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -1204,7 +1204,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Alphabetical</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -957,7 +957,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Alphabetical</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -634,7 +634,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Alphabetical</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -470,7 +470,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Alphabetical</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -354,7 +354,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Alphabetical</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -438,7 +438,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Alphabetical</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -725,7 +725,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Alphabetical</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -1164,7 +1164,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Alphabetical</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -548,7 +548,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

File diff suppressed because one or more lines are too long

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Alphabetical</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -1237,7 +1237,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Alphabetical</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -167,7 +167,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Alphabetical</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -949,7 +949,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Alphabetical</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -2011,7 +2011,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Alphabetical</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -1640,7 +1640,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Alphabetical</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -403,7 +403,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Alphabetical</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -441,7 +441,7 @@
</nav><div class="block">
<div class="tags has-addons"><a href="genres.html#platform" title="platform games" class="tag is-info">platform</a><a href="genres.html#remake" title="remake games" class="tag is-info">remake</a>
<span class="tag is-light">content commercial + original required</span></div>
</div><div class="block">Homepage: <a href="http://distractionware.com/blog/2020/01/vvvvvv-is-now-open-source/">distractionware.com/blog/2020/01/vvvvvv-is-now-open-source</a><br>Inspiration: <a href="../inspirations/V.html#vvvvvv">VVVVVV</a><br></div><div class="block is-size-7">
</div><div class="block">Homepage: <a href="http://distractionware.com/blog/2020/01/vvvvvv-is-now-open-source/">distractionware.com/blog/2020/01/vvvvvv-is-now-open-source</a><br>Inspiration: <a href="../inspirations/V.html#vvvvvv">VVVVVV</a><br></div><nav class="level"><div class="level-item"><a href="None"><img src="../screenshots/vvvvvv_01.jpg" width="221" height="128" alt=""></a></div></nav><div class="block is-size-7">
<span class="has-text-weight-semibold">Details</span><br>Code languages: <a href="languages.html#actionscript">ActionScript</a>, <a href="languages.html#c++">C++</a><br>Code licenses: Custom<br>Code repositories: <a href="https://github.com/TerryCavanagh/vvvvvv.git">TerryCavanagh/vvvvvv.git<span class="icon has-text-black"><i class="icon-github"></i></span></a>(since 2015, <span class="icon has-text-black" title="top rated"><i class="icon-star"></i></span>)<br>Code dependencies: Adobe AIR, SDL2<br><details><summary>Developers: (18)</summary><a href="../developers/A.html#allison_fleischer">Allison Fleischer</a>, <a href="../developers/A.html#ally">Ally</a>, <a href="../developers/C.html#charlie">Charlie</a>, <a href="../developers/D.html#daniel_lee">Daniel Lee</a>, <a href="../developers/D.html#dav999-v">Dav999-v</a>, <a href="../developers/E.html#epirat">ePirat</a>, <a href="../developers/E.html#ethan_lee">Ethan Lee</a>, <a href="../developers/F.html#fredrik_ljungdahl">Fredrik Ljungdahl</a>, <a href="../developers/L.html#leo60228">leo60228</a>, <a href="../developers/M.html#matt_aaldenberg">Matt Aaldenberg</a>, <a href="../developers/M.html#matt_penny">Matt Penny</a>, <a href="../developers/M.html#misa">Misa</a>, <a href="../developers/M.html#misa_elizabeth_kai">Misa Elizabeth Kai</a>, <a href="../developers/N.html#nichole_mattera">Nichole Mattera</a>, <a href="../developers/R.html#reese_rivers">Reese Rivers</a>, <a href="../developers/R.html#rmi_verschelde">Rémi Verschelde</a>, <a href="../developers/T.html#terry_cavanagh">Terry Cavanagh</a>, <a href="../developers/T.html#tynan_richards">Tynan Richards</a></details><br></div><div class="block is-size-7 has-text-right">
<a href="../contribute.html#games" title="Contribution guide" class="mr-2">Improve</a>
<a href="https://raw.githubusercontent.com/Trilarion/opensourcegames/master/entries/vvvvvv.md" title="Text based entry on Github">Raw entry</a>
@ -456,7 +456,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Alphabetical</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -569,7 +569,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Alphabetical</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -459,7 +459,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Alphabetical</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -133,7 +133,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Alphabetical</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -336,7 +336,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Genres</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -43,7 +43,7 @@
</nav>
<div class="container">
<div class="box"><div class="block">
<p class="title is-4">Open source games</p><p class="subtitle is-6">Index by game genre</p></div><div class="tags">
<p class="title is-4">Open source games</p><p class="subtitle is-6">Index by game genre (or see the <a href="../table.html">table</a>)</p></div><div class="tags">
<span class="tag is-white is-size-5"><span class="icon has-text-black"><i class="icon-target"></i></span><a href="#action" class="has-text-weight-semibold">Action</a> <span class="has-text-grey">(266)</span>
</span><span class="tag is-white is-size-6"><span class="icon has-text-black"><i class="icon-dice"></i></span><a href="#adventure" class="has-text-weight-semibold">Adventure</a> <span class="has-text-grey">(42)</span>
</span><span class="tag is-white is-size-5"><span class="icon has-text-black"><i class="icon-pacman"></i></span><a href="#arcade" class="has-text-weight-semibold">Arcade</a> <span class="has-text-grey">(157)</span>
@ -1553,7 +1553,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Alphabetical</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -43,7 +43,7 @@
</nav>
<div class="container">
<div class="box"><div class="block">
<p class="title is-4">Open source games</p><p class="subtitle is-6">Alphabetical index of informations about 1342 games</p></div><div class="tags">
<p class="title is-4">Open source games</p><p class="subtitle is-6">Alphabetical index of informations about 1342 games (or see the <a href="../table.html">table</a>)</p></div><div class="tags">
<span class="tag is-white is-size-5"><a href="#a" class="has-text-weight-semibold">A</a> <span class="has-text-grey">(65)</span>
</span><span class="tag is-white is-size-5"><a href="#b" class="has-text-weight-semibold">B</a> <span class="has-text-grey">(73)</span>
</span><span class="tag is-white is-size-5"><a href="#c" class="has-text-weight-semibold">C</a> <span class="has-text-grey">(97)</span>
@ -1313,7 +1313,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Programming language</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -43,7 +43,7 @@
</nav>
<div class="container">
<div class="box"><div class="block">
<p class="title is-4">Open source games and frameworks</p><p class="subtitle is-6">Index by programming language</p></div><div class="tags">
<p class="title is-4">Open source games and frameworks</p><p class="subtitle is-6">Index by programming language (or see the <a href="../table.html">table</a>)</p></div><div class="tags">
<span class="tag is-white is-size-6"><a href="#?" class="has-text-weight-semibold">?</a> <span class="has-text-grey">(3)</span>
</span><span class="tag is-white is-size-6"><a href="#actionscript" class="has-text-weight-semibold">ActionScript</a> <span class="has-text-grey">(2)</span>
</span><span class="tag is-white is-size-6"><a href="#ada" class="has-text-weight-semibold">Ada</a> <span class="has-text-grey">(11)</span>
@ -2205,7 +2205,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Games | Supported Platform</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -43,7 +43,7 @@
</nav>
<div class="container">
<div class="box"><div class="block">
<p class="title is-4">Open source games and frameworks</p><p class="subtitle is-6">Index by supported platform</p></div><div class="tags">
<p class="title is-4">Open source games and frameworks</p><p class="subtitle is-6">Index by supported platform (or see the <a href="../table.html">table</a>)</p></div><div class="tags">
<span class="tag is-white is-size-5"><span class="icon has-text-black"><i class="icon-windows"></i></span><a href="#windows" class="has-text-weight-semibold">Windows</a> <span class="has-text-grey">(531)</span>
</span><span class="tag is-white is-size-5"><span class="icon has-text-black"><i class="icon-tux"></i></span><a href="#linux" class="has-text-weight-semibold">Linux</a> <span class="has-text-grey">(504)</span>
</span><span class="tag is-white is-size-5"><span class="icon has-text-black"><i class="icon-appleinc"></i></span><a href="#macos" class="has-text-weight-semibold">macOS</a> <span class="has-text-grey">(297)</span>
@ -1742,7 +1742,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

File diff suppressed because one or more lines are too long

View File

@ -45,7 +45,7 @@
<div class="hero-body">
<div class="container content">
<h1 class="title">Open source games list (OSGL)</h1>
<p class="subtitle">Contains information about 1342 open source games and 307 frameworks/tools.</p>
<p class="subtitle">Contains information about 1342 open source games and 307 game engines/tools.</p>
<p>The content of this site is based on a collection of open source game descriptions stored on <a href="https://github.com/Trilarion/opensourcegames">Github</a>.
The descriptions concentrate on technical and general aspects of the games. Lots of sorting options are available and a list of inspirations and developers is cross-referenced.
This work is a best-effort based result and will surely contain inaccurate information.<br>
@ -64,7 +64,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Inspirational games</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -63,7 +63,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Inspirational games</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -285,7 +285,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Inspirational games</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -285,7 +285,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Inspirational games</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -375,7 +375,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Inspirational games</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -279,7 +279,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Inspirational games</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -159,7 +159,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Inspirational games</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -237,7 +237,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Inspirational games</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -177,7 +177,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Inspirational games</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -135,7 +135,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Inspirational games</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -99,7 +99,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Inspirational games</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -111,7 +111,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Inspirational games</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -123,7 +123,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Inspirational games</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -195,7 +195,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Inspirational games</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -375,7 +375,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Inspirational games</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -135,7 +135,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Inspirational games</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -135,7 +135,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Inspirational games</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -219,7 +219,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Inspirational games</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -81,7 +81,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Inspirational games</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -183,7 +183,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Inspirational games</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -657,7 +657,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Inspirational games</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -393,7 +393,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Inspirational games</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -159,7 +159,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Trilarion">
<meta name="description" content="Infos and technical information about many open source games and frameworks.">
<title>OSGL</title>
<title>OSGL | Inspirational games</title>
<link rel="stylesheet" href="../css/bulma.min.css">
<link rel="stylesheet" href="../css/osgl.min.css">
<link rel="icon" type="image/svg+xml" href="../favicon.svg">
@ -93,7 +93,7 @@
<p>The content (games descriptions) is licensed <a href="https://github.com/Trilarion/opensourcegames/blob/master/LICENSE">CC-0</a>.
Used icons are licensed under CC BY-SA 3.0 (<a href="https://github.com/somerandomdude/Iconic">Iconic</a> or <a href="http://designmodo.com/linecons-free/">Linecons</a>), CC0 1.0 (<a href="https://simpleicons.org/">Simple Icons</a>),
CC BY 4.0 (<a href="https://github.com/FortAwesome/Font-Awesome">Font Awesome</a> or <a href="https://icomoon.io/#icons-icomoon">IcoMoon Free</a>), CC BY-SA 4.0 (<a href="http://www.entypo.com/">Entypo+</a>) or Apache License 2.0 (<a href="https://material.io/resources/icons">Material Icons</a>).
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-13 14:06</p>
This website is built using Python, Lark, Jinja2 and Bulma. Last updated: 2021-10-15 21:32</p>
</footer>
</body>
</html>

Some files were not shown because too many files have changed in this diff Show More