Archipelago/WebHostLib/templates/supportedGames.html

18 lines
553 B
HTML
Raw Normal View History

2021-06-15 00:35:40 +00:00
{% extends 'pageWrapper.html' %}
{% block head %}
<title>Player Settings</title>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename="styles/games.css") }}" />
{% endblock %}
{% block body %}
{% include 'header/grassHeader.html' %}
<div id="games">
<h1>Currently Supported Games</h1>
{% for game, description in worlds.items() %}
2021-09-18 00:35:31 +00:00
<h3><a href="{{ url_for("player_settings", game=game) }}">{{ game }}</a></h3>
<p>{{ description }}</p>
2021-06-15 00:35:40 +00:00
{% endfor %}
</div>
{% endblock %}