2026-03-24 22:57:12 -04:00
|
|
|
{% 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">
|
2026-04-04 13:49:48 -04:00
|
|
|
{% include "apps/applets/_partials/_gear.html" with menu_id="id_game_kit_menu" %}
|
|
|
|
|
{% include "apps/gameboard/_partials/_game_kit_applet_menu.html" %}
|
2026-03-24 22:57:12 -04:00
|
|
|
<div id="id_game_kit_applets_container">
|
2026-04-04 13:49:48 -04:00
|
|
|
{% include "apps/gameboard/_partials/_game_kit_sections.html" %}
|
2026-03-24 22:57:12 -04:00
|
|
|
</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">‹</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">›</button>
|
|
|
|
|
</div>
|
|
|
|
|
</dialog>
|
|
|
|
|
{% endblock content %}
|
|
|
|
|
|
|
|
|
|
{% block scripts %}
|
|
|
|
|
<script src="{% static 'apps/gameboard/game-kit.js' %}"></script>
|
|
|
|
|
{% endblock scripts %}
|