webapp/templates/default/layout.html.twig

39 lines
1.4 KiB
Twig
Raw Normal View History

2023-12-05 02:15:41 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
2023-12-05 20:13:39 +00:00
<title>{% block head_title_content %}{{ 'KevaChat' | trans }}{% endblock %}</title>
2023-12-07 16:29:48 +00:00
<link rel="stylesheet" type="text/css" href="{{ url('room_index') }}css/default.css?{{ app.version }}"/>
2023-12-05 02:15:41 +00:00
</head>
<body>
<header>
<strong>
2023-12-06 19:59:33 +00:00
<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="currentColor" viewBox="0 0 16 16">
<path d="M14 0a2 2 0 0 1 2 2v12.793a.5.5 0 0 1-.854.353l-2.853-2.853a1 1 0 0 0-.707-.293H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2z"/>
</svg>
2023-12-05 02:15:41 +00:00
{{ app.name }}
</strong>
<sup>
<a href="https://github.com/kevachat/webapp" target="_blank" title="Source">{{ app.version }}</a>
</sup>
{% block header_module_info %}
{{
render(
controller(
2023-12-07 22:27:30 +00:00
'App\\Controller\\ModuleController::info',
{
request : request
}
2023-12-05 02:15:41 +00:00
)
)
}}
{% endblock %}
</header>
<main>
{% block main_content %}{% endblock %}
</main>
<footer>
{% block footer_content %}{% endblock %}
</footer>
</body>
</html>