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,14 @@
{% extends 'pageWrapper.html' %}
{% block head %}
<title>{{ game }} Info</title>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename="styles/markdown.css") }}" />
<script type="application/ecmascript" src="{{ url_for('static', filename="assets/gameInfo.js") }}"></script>
{% endblock %}
{% block body %}
{% include 'header/grassHeader.html' %}
<div id="game-info" class="markdown" data-game="{{ game }}">
<!-- Populated my JS / MD -->
</div>
{% endblock %}