Added gameInfo page using markdown, removed old game sub-pages and directories

This commit is contained in:
Chris Wilson
2021-09-17 18:41:26 -04:00
parent 351a5b87bf
commit 11245462f0
11 changed files with 76 additions and 71 deletions

View File

@@ -0,0 +1,17 @@
{% 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() %}
<h3><a href="{{ url_for("game_page", game=game) }}/player-settings">{{ game }}</a></h3>
<p>{{ description }}</p>
{% endfor %}
</div>
{% endblock %}