15 lines
376 B
Twig
15 lines
376 B
Twig
<!DOCTYPE html>
|
|
<html lang="{{ user.lang }}">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="format-detection" content="telephone=yes" />
|
|
{% block head %}
|
|
<title>{{ site.title }}</title>
|
|
{% endblock %}
|
|
</head>
|
|
<body>
|
|
{% block body %}
|
|
{% endblock %}
|
|
</body>
|
|
</html> |