29 lines
931 B
PHTML
29 lines
931 B
PHTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
{% section "head" %}
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
|
<title>{% section "head.title" %}{{ title() }} — {{ lang('application_name') }}{% endsection %}</title>
|
|
</style>
|
|
</head>
|
|
{% endsection %}
|
|
|
|
{% section "body" %}
|
|
<body>
|
|
{% section "body.header" %}{% endsection %}
|
|
|
|
{% section "header" %}{% endsection %}
|
|
|
|
{% section "message" %}
|
|
{% view "lean/widget/message" %}
|
|
{% endsection %}
|
|
|
|
<main role="main" class="content">{% section "main" %}{% endsection %}</main>
|
|
|
|
<footer>{% section "footer" %}{% endsection %}</footer>
|
|
|
|
{% section "body.footer" %}{% endsection %}
|
|
</body>
|
|
{% endsection %}
|
|
</html> |