Files
python-tdd/src/templates/apps/gameboard/game_kit.html

28 lines
1014 B
HTML
Raw Normal View History

{% extends "core/base.html" %}
{% load static %}
{% block title_text %}Game Kit{% endblock title_text %}
{% block header_text %}<span>Game</span>Kit{% endblock header_text %}
{% block content %}
<div class="gameboard-page">
{% include "apps/applets/_partials/_gear.html" with menu_id="id_game_kit_menu" %}
{% include "apps/gameboard/_partials/_game_kit_applet_menu.html" %}
<div id="id_game_kit_applets_container">
{% include "apps/gameboard/_partials/_game_kit_sections.html" %}
</div>
</div>
<dialog id="id_tarot_fan_dialog">
<div class="tarot-fan-wrap">
<button id="id_fan_prev" class="fan-nav fan-nav--prev" aria-label="Previous card">&#8249;</button>
<div id="id_fan_content" class="tarot-fan"></div>
<button id="id_fan_next" class="fan-nav fan-nav--next" aria-label="Next card">&#8250;</button>
</div>
</dialog>
{% endblock content %}
{% block scripts %}
<script src="{% static 'apps/gameboard/game-kit.js' %}"></script>
{% endblock scripts %}