2020-03-10 19:04:22 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
2021-04-30 02:51:03 +01:00
|
|
|
<head>
|
|
|
|
{% block meta %}
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
{% endblock %}
|
2021-07-20 13:18:57 +01:00
|
|
|
|
2021-04-30 02:51:03 +01:00
|
|
|
<title>
|
|
|
|
{% block title %}{% endblock %}
|
|
|
|
</title>
|
2021-07-20 13:18:57 +01:00
|
|
|
|
2021-04-30 02:51:03 +01:00
|
|
|
{% block stylesheets %}
|
2021-07-19 13:06:07 +01:00
|
|
|
<link rel='stylesheet' type='text/css' href="{{ asset('assets/fonts/inter/inter.css') }}">
|
|
|
|
<link rel='stylesheet' type='text/css' href="{{ asset('assets/fonts/manrope/manrope.css') }}">
|
2021-07-20 13:18:57 +01:00
|
|
|
<link rel='stylesheet' type='text/css' href="{{ asset('assets/css/base.css') }}">
|
2021-04-30 02:51:03 +01:00
|
|
|
<link rel='stylesheet' type='text/css' href="{{ asset('assets/css/reset.css') }}">
|
|
|
|
{% for stylesheet in show_stylesheets() %}
|
|
|
|
<link rel='stylesheet' type='text/css' href="{{ asset('assets/css/' ~ stylesheet) }}">
|
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|
2021-07-20 13:18:57 +01:00
|
|
|
|
2021-04-30 02:51:03 +01:00
|
|
|
{% for arr in handle_event('ShowHeadElements', app.request) %}
|
|
|
|
{# Only one element, but has dynamic value, can't access it directly #}
|
|
|
|
{% for type, element in arr %}
|
|
|
|
<{{ type }} rel="{{ element['rel'] }}" type="{{ element['type'] }}" href="{{ element['href'] }}" title="{{ element['title'] }}">
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
</head>
|
2021-08-09 13:25:08 +01:00
|
|
|
|
2021-08-04 21:12:59 +01:00
|
|
|
<body class="bg">
|
2021-08-11 18:42:15 +01:00
|
|
|
{% block header %}
|
2021-08-04 21:12:59 +01:00
|
|
|
<div id='header'>
|
2021-07-28 15:37:54 +01:00
|
|
|
<details class="panel" id="left-container">
|
|
|
|
<summary tabindex="1">
|
2021-08-11 21:45:59 +01:00
|
|
|
{{ icon('menu', 'icon icon-left') | raw }}
|
2021-07-28 15:37:54 +01:00
|
|
|
{{ block("leftpanel", "stdgrid.html.twig") }}
|
|
|
|
</summary>
|
|
|
|
</details>
|
|
|
|
|
|
|
|
<a id='instance' href="{{ path('main_public') }}" tabindex="2">
|
|
|
|
{{ icon('logo', 'icon icon-logo') | raw }}
|
|
|
|
<h1> {{ config('site', 'name') }} </h1>
|
|
|
|
</a>
|
|
|
|
|
|
|
|
<details class="panel" id="right-container">
|
|
|
|
<summary tabindex="3">
|
|
|
|
{{ icon('notes', 'icon icon-right') | raw }}
|
|
|
|
{{ block("rightpanel", "stdgrid.html.twig") }}
|
|
|
|
</summary>
|
|
|
|
</details>
|
2021-07-23 11:47:43 +01:00
|
|
|
</div>
|
2021-04-30 02:51:03 +01:00
|
|
|
{% endblock header %}
|
2020-07-12 23:32:24 +01:00
|
|
|
|
2021-07-20 13:18:57 +01:00
|
|
|
<div class="container">
|
2021-08-09 13:25:08 +01:00
|
|
|
<div class='content'>
|
|
|
|
{% block nav %}{% endblock %}
|
|
|
|
{% block body %}{% endblock %}
|
|
|
|
{% block javascripts %}{% endblock javascripts %}
|
|
|
|
</div>
|
2021-07-20 13:18:57 +01:00
|
|
|
</div>
|
2021-04-30 02:51:03 +01:00
|
|
|
</body>
|
2020-03-10 19:04:22 +00:00
|
|
|
</html>
|
2021-04-28 22:25:35 +01:00
|
|
|
|