2020-03-11 04:04:22 +09:00
|
|
|
<!DOCTYPE html>
|
2021-08-20 04:37:16 +09:00
|
|
|
<html xml:lang="en" lang="en">
|
2021-04-30 10:51:03 +09:00
|
|
|
<head>
|
|
|
|
{% block meta %}
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
{% endblock %}
|
2021-07-20 21:18:57 +09:00
|
|
|
|
2021-04-30 10:51:03 +09:00
|
|
|
<title>
|
|
|
|
{% block title %}{% endblock %}
|
|
|
|
</title>
|
2021-07-20 21:18:57 +09:00
|
|
|
|
2021-04-30 10:51:03 +09:00
|
|
|
{% block stylesheets %}
|
2021-09-01 02:33:58 +09:00
|
|
|
<link rel='stylesheet' type='text/css' href="{{ asset('assets/css/reset.css') }}">
|
|
|
|
|
2021-07-19 21:06:07 +09: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 21:18:57 +09:00
|
|
|
<link rel='stylesheet' type='text/css' href="{{ asset('assets/css/base.css') }}">
|
2021-09-01 02:33:58 +09:00
|
|
|
|
2021-04-30 10:51:03 +09:00
|
|
|
{% for stylesheet in show_stylesheets() %}
|
|
|
|
<link rel='stylesheet' type='text/css' href="{{ asset('assets/css/' ~ stylesheet) }}">
|
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|
2021-07-20 21:18:57 +09:00
|
|
|
|
2021-04-30 10:51:03 +09: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 21:25:08 +09:00
|
|
|
|
2021-09-07 07:37:54 +09:00
|
|
|
<body class="bg" aria-live="polite">
|
2021-08-31 01:56:59 +09:00
|
|
|
<a id="anchor-menu" class="anchor-hidden"></a>
|
2021-09-07 07:54:14 +09:00
|
|
|
<aside class="accessibility-menu" tabindex="0" aria-roledescription="{{ 'Learn keybindings to select each of the main page areas.' | trans }}">
|
2021-08-31 01:56:59 +09:00
|
|
|
<h2>{{ 'Select page section:' | trans }}</h2>
|
|
|
|
<br>
|
2021-09-01 02:33:58 +09:00
|
|
|
|
|
|
|
<p>
|
2021-09-07 23:20:28 +09:00
|
|
|
{% if is_firefox() == true %}
|
|
|
|
<em><kbd>Alt</kbd> + <kbd>Shift</kbd> + "access key"</em>
|
|
|
|
{% else %}
|
|
|
|
<em><kbd>Alt</kbd> + "access key"</em>
|
|
|
|
{% endif %}
|
2021-09-01 02:33:58 +09:00
|
|
|
</p>
|
2021-08-31 01:56:59 +09:00
|
|
|
|
|
|
|
<ul>
|
2021-09-07 07:54:14 +09:00
|
|
|
<li><a href="#anchor-menu" accesskey="m">{{ 'This menu (press \'m\' to access).' | trans }}</a></li>
|
|
|
|
<li><a href="#anchor-left-panel" accesskey="h">{{ 'Left panel (press \'h\' to access).' | trans }}</a></li>
|
|
|
|
<li><a href="#anchor-main-content" accesskey="k">{{ 'Main content (press \'k\' to access).' | trans }}</a></li>
|
|
|
|
<li><a href="#anchor-main-page" accesskey="j">{{ 'Main page (press \'j\' to access).' | trans }}</a></li>
|
|
|
|
<li><a href="#anchor-right-panel" accesskey="l">{{ 'Right panel (press \'l\' to access).' | trans }}</a></li>
|
2021-08-31 01:56:59 +09:00
|
|
|
</ul>
|
|
|
|
</aside>
|
|
|
|
|
|
|
|
{% block header %}
|
|
|
|
<header id='header' role="banner">
|
|
|
|
{{ block("leftpanel", "stdgrid.html.twig") }}
|
|
|
|
|
|
|
|
<a id="anchor-main-page" class="anchor-hidden"></a>
|
|
|
|
<a id='instance' href="{{ path('main_public') }}" tabindex="0" aria-roledescription="This instance name.">
|
|
|
|
<div aria-hidden="true">{{ icon('logo', 'icon icon-logo') | raw }}</div>
|
|
|
|
<h1> {{ config('site', 'name') }} </h1>
|
|
|
|
</a>
|
|
|
|
|
|
|
|
{% if app.user %}
|
|
|
|
{{ block("rightpanel", "stdgrid.html.twig") }}
|
|
|
|
{% endif %}
|
|
|
|
</header>
|
|
|
|
{% endblock header %}
|
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
<a id="anchor-main-content" class="anchor-hidden"></a>
|
|
|
|
<div class='content' aria-roledescription="Main content.">
|
|
|
|
{% block nav %}{% endblock %}
|
|
|
|
{% block body %}{% endblock %}
|
|
|
|
{% block javascripts %}{% endblock javascripts %}
|
2021-07-20 21:18:57 +09:00
|
|
|
</div>
|
2021-08-31 01:56:59 +09:00
|
|
|
</div>
|
2021-04-30 10:51:03 +09:00
|
|
|
</body>
|
2020-03-11 04:04:22 +09:00
|
|
|
</html>
|
2021-04-29 06:25:35 +09:00
|
|
|
|