2020-03-11 04:04:22 +09:00
|
|
|
<!DOCTYPE html>
|
2021-09-08 04:07:46 +09:00
|
|
|
<html lang="en">
|
2021-04-30 10:51:03 +09:00
|
|
|
<head>
|
|
|
|
{% block meta %}
|
2021-09-08 04:07:46 +09:00
|
|
|
<meta charset="utf-8">
|
2021-04-30 10:51:03 +09:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2021-09-08 04:07:46 +09:00
|
|
|
<link rel="home" href="/">
|
2021-04-30 10:51:03 +09:00
|
|
|
{% 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-10-02 01:25:51 +09:00
|
|
|
<link rel="preload" href="{{ asset('assets/default_theme/css/base.css') }}" as="style" type="text/css">
|
|
|
|
<link rel="stylesheet" href="{{ asset('assets/default_theme/css/base.css') }}">
|
2021-09-01 02:33:58 +09:00
|
|
|
|
2021-10-06 08:34:27 +09:00
|
|
|
{% for stylesheet in show_stylesheets(app.request.get('_route')) %}
|
2021-10-02 01:25:51 +09:00
|
|
|
<link rel='stylesheet' type='text/css' href="{{ asset(stylesheet) }}">
|
2021-04-30 10:51:03 +09:00
|
|
|
{% 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-10-20 04:33:01 +09:00
|
|
|
<body class="background-image set-background-color-1">
|
2021-09-08 04:07:46 +09:00
|
|
|
|
2021-10-06 00:03:17 +09:00
|
|
|
<aside class="accessibility-menu set-background-color-1">
|
2021-10-02 00:37:28 +09:00
|
|
|
<h2 class="accessibility-menu-title" tabindex="0">{{ 'Accessibility menu.' | trans }}</h2>
|
2021-09-24 01:14:53 +09:00
|
|
|
<p tabindex="0">{{ 'Here you can find fast shortcuts to various page regions!' | trans }}</p>
|
2021-09-09 04:09:38 +09:00
|
|
|
<p tabindex="0">{{ 'Provided the following keyboard shortcut, the link is targeted.' | trans }}</p>
|
2021-09-24 01:14:53 +09:00
|
|
|
<br>
|
2021-09-17 07:53:38 +09:00
|
|
|
<p tabindex="0">{{ 'Be mindful that another ' | trans }}<kbd>Tab</kbd>{{ ' is needed in order to focus.' | trans }}</p>
|
2021-09-09 04:09:38 +09:00
|
|
|
<p tabindex="0">
|
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-09-17 07:53:38 +09:00
|
|
|
<br>
|
2021-08-31 01:56:59 +09:00
|
|
|
|
2021-09-09 04:09:38 +09:00
|
|
|
<a accesskey="z" href="#anchor-accessibility-menu" class="anchor-hidden"></a>
|
|
|
|
<a id="anchor-accessibility-menu" class="anchor-hidden"></a>
|
|
|
|
|
|
|
|
<p tabindex="0">
|
2021-09-12 05:31:56 +09:00
|
|
|
<strong>{{ 'The keyboard key ' | trans }}<kbd>Z</kbd>{{ ' accesses this menu.' | trans }}</strong>
|
2021-09-08 04:07:46 +09:00
|
|
|
<strong>{{ 'The other access keys are:' | trans }}</strong>
|
|
|
|
</p>
|
|
|
|
|
2021-09-07 23:23:41 +09:00
|
|
|
<nav>
|
|
|
|
<ul>
|
2021-09-12 05:31:56 +09:00
|
|
|
<li><a href="#anchor-left-panel" accesskey="h"><kbd>H</kbd>{{ ' for the Left panel.' | trans }}</a></li>
|
2021-09-08 04:07:46 +09:00
|
|
|
<li><a href="#anchor-main-content" accesskey="k"><kbd>K</kbd>{{ ' for the main content.' | trans }}</a></li>
|
|
|
|
<li><a href="#anchor-main-page" accesskey="j"><kbd>J</kbd>{{ ' for the main page.' | trans }}</a></li>
|
|
|
|
<li><a href="#anchor-right-panel" accesskey="l"><kbd>L</kbd>{{ ' for the right panel.' | trans }}</a></li>
|
2021-09-07 23:23:41 +09:00
|
|
|
</ul>
|
|
|
|
</nav>
|
2021-08-31 01:56:59 +09:00
|
|
|
</aside>
|
|
|
|
|
|
|
|
{% block header %}
|
2021-10-04 20:17:14 +09:00
|
|
|
{% set extra_header_forms = handle_event('AddExtraHeaderForms', request) %}
|
|
|
|
|
2021-10-20 04:33:01 +09:00
|
|
|
<header class="page-header">
|
2021-08-31 01:56:59 +09:00
|
|
|
{{ block("leftpanel", "stdgrid.html.twig") }}
|
|
|
|
|
2021-10-02 00:37:28 +09:00
|
|
|
<a id="anchor-main-page" class="anchor-hidden" title="{{ 'Press tab to access instance\'s main page.' | trans }}"></a>
|
|
|
|
<a class="accessibility-target header-instance" href="{{ path('main_public') }}" tabindex="0" title="{{ 'This instance\'s name. Access public timeline.' | trans }}">
|
2021-10-26 22:47:28 +09:00
|
|
|
<h1>{{ icon('logo', 'icon icon-logo') | raw }}{{ config('site', 'name') }}</h1>
|
2021-08-31 01:56:59 +09:00
|
|
|
</a>
|
|
|
|
|
2021-10-20 04:33:01 +09:00
|
|
|
<details class="header-extra-actions">
|
2021-10-04 20:17:14 +09:00
|
|
|
<summary>
|
|
|
|
{{ icon('kebab', 'icon icon-details-open') | raw }}
|
|
|
|
</summary>
|
2021-10-20 04:33:01 +09:00
|
|
|
<div class="header-extra-actions-open">
|
2021-10-06 00:03:17 +09:00
|
|
|
{% for extra_form in extra_header_forms %}
|
|
|
|
{{ form(extra_form) }}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2021-10-04 20:17:14 +09:00
|
|
|
</details>
|
2021-09-27 18:39:58 +09:00
|
|
|
|
2021-08-31 01:56:59 +09:00
|
|
|
{% if app.user %}
|
|
|
|
{{ block("rightpanel", "stdgrid.html.twig") }}
|
|
|
|
{% endif %}
|
|
|
|
</header>
|
|
|
|
{% endblock header %}
|
|
|
|
|
2021-10-20 04:33:01 +09:00
|
|
|
<div class="page-content-wrapper">
|
2021-10-02 00:37:28 +09:00
|
|
|
<a role="navigation" rel="help" id="anchor-main-content" class="anchor-hidden" title="{{ 'Press tab to access main content.' | trans }}"></a>
|
2021-10-20 04:33:01 +09:00
|
|
|
<div class='page-content accessibility-target'>
|
2021-08-31 01:56:59 +09:00
|
|
|
{% 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
|
|
|
|