mirror of
https://gitlab.com/veilid/veilid-dot-com.git
synced 2024-10-01 01:05:53 -04:00
29 lines
1006 B
Twig
29 lines
1006 B
Twig
<!DOCTYPE html>
|
|
<html lang="{{ site.language }}">
|
|
<head>
|
|
{%- block head ~%}
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
{%~ include 'partials/metatags.html.twig' with {page, site} only ~%}
|
|
<link href="{{ asset('scss/style.scss')|url }}" rel="stylesheet" />
|
|
{%- endblock head ~%}
|
|
</head>
|
|
<body>
|
|
{% include 'partials/header.html.twig' %}
|
|
<div class="page-content p-3" id="content">
|
|
<div class="container">
|
|
{%- block content ~%}
|
|
{% include 'partials/languages.html.twig' %}
|
|
{%- block content_header %}
|
|
<div class="take-back-control">
|
|
<h2 id="page-title">{{ page.title }}</h2>
|
|
</div>
|
|
{% endblock content_header ~%}
|
|
{{ page.content }}
|
|
{%- block content_footer %}{% endblock content_footer ~%}
|
|
{%- endblock content ~%}
|
|
</div>
|
|
</div>
|
|
{% include 'partials/footer.html.twig' %}
|
|
</body>
|
|
</html> |