mirror of
https://github.com/kevinpapst/kimai2.git
synced 2024-12-22 04:08:29 +00:00
14 lines
325 B
Twig
14 lines
325 B
Twig
<!DOCTYPE html>
|
|
<html lang="{{ app.request.locale }}">
|
|
<head>
|
|
<title>{% block page_title %}{{- get_title() -}}{% endblock %}</title>
|
|
</head>
|
|
<body class="ajax-forms">
|
|
<div id="ajax-messages">
|
|
{{ include('@theme/includes/flash_messages.html.twig') }}
|
|
</div>
|
|
<div id="ajax-form">
|
|
{{ block('main') }}
|
|
</div>
|
|
</body>
|