14 lines
310 B
HTML
14 lines
310 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ t.site_name }}{% endblock title %}
|
|
|
|
{% block head_extra %}
|
|
{% include "player/styles.html" %}
|
|
{% endblock head_extra %}
|
|
|
|
{% block body %}
|
|
{% include "player/shell.html" %}
|
|
{% include "player/modals.html" %}
|
|
{% include "player/scripts.html" %}
|
|
{% endblock body %}
|