2021-01-02 06:21:53 -05:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block head_tags %}
|
|
|
|
<link rel="stylesheet" href="/static/css/games_page.css">
|
|
|
|
<link rel="stylesheet" href="/static/css/game.css">
|
|
|
|
<script type="text/javascript" src="static/js/grid_loader.js"></script>
|
|
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
|
|
<div id="filters">
|
|
|
|
<div>Filter:</div>
|
|
|
|
<button class="filter" {% if not league %}id="selected_filter"{% endif %}>All</button>
|
|
|
|
{% if league %}<button class="filter" id="selected_filter">{{ league }}</button>{% endif %}
|
2020-12-31 01:33:03 -05:00
|
|
|
</div>
|
2020-12-28 19:48:50 -05:00
|
|
|
<section class="container" id="container">
|
2020-12-30 03:08:32 -05:00
|
|
|
<div class="emptyslot"></div>
|
|
|
|
<div class="emptyslot"></div>
|
|
|
|
<div class="emptyslot"></div>
|
2020-12-28 19:48:50 -05:00
|
|
|
</section>
|
2020-12-30 15:10:29 -05:00
|
|
|
<div id="footer">
|
|
|
|
<div></div>
|
|
|
|
</div>
|
2021-01-02 06:21:53 -05:00
|
|
|
{% endblock %}
|