Link /games to player-settings pages, add link to template file to player-settings, add markdown style formatting to /templates

This commit is contained in:
Chris Wilson
2021-09-01 20:47:36 -04:00
parent 63c9bea724
commit 859316353e
3 changed files with 8 additions and 3 deletions

View File

@@ -10,7 +10,7 @@
<div id="games">
<h1>Currently Supported Games</h1>
{% for game, description in worlds.items() %}
<h3><a href="{{ url_for("game_page", game=game) }}">{{ game }}</a></h3>
<h3><a href="{{ url_for("game_page", game=game) }}/player-settings">{{ game }}</a></h3>
<p>{{ description }}</p>
{% endfor %}
</div>