15 lines
514 B
HTML
15 lines
514 B
HTML
{% 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 %}
|