2021-12-08 16:53:43 +01:00
|
|
|
{% extends "base.twig" %}
|
|
|
|
|
|
|
|
{% block head %}
|
|
|
|
<title>{{ site.name }} - Administration</title>
|
2022-02-20 16:53:26 +01:00
|
|
|
<link rel="stylesheet" href="/css/fontawesome.min.css" nonce="{{ site.csp.nonce }}">
|
2021-12-08 16:53:43 +01:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
<noscript>You need Javascript enabled to run this app</noscript>
|
2022-11-23 23:36:30 +01:00
|
|
|
<div class="wrapper" type="module" id="admin-panel"></div>
|
|
|
|
<script src="/js/admin-panel/index.js" nonce="{{ site.csp.nonce }}"></script>
|
2022-11-30 16:42:24 +01:00
|
|
|
<link rel="stylesheet" href="/js/admin-panel/index.css" nonce="{{ site.csp.nonce }}"></link>
|
2021-12-08 16:53:43 +01:00
|
|
|
{% endblock %}
|