11 lines
391 B
HTML
11 lines
391 B
HTML
{% extends "core/base.html" %}
|
|
|
|
{% block title_text %}Gameboard{% endblock title_text %}
|
|
{% block header_text %}Gameboard{% endblock header_text %}
|
|
|
|
{% block content %}
|
|
<div class="gameboard-page">
|
|
{% include "apps/applets/_partials/_gear.html" with menu_id="id_game_applet_menu" %}
|
|
{% include "apps/gameboard/_partials/_applets.html" %}
|
|
</div>
|
|
{% endblock content %} |