slovocast/code/templates/layouts/skeleton.twig
2024-05-15 22:03:49 -04:00

22 lines
413 B
Twig

<!DOCTYPE html>
<html lang="en">
<head>
<title>{% block "page_title" %}{% endblock %}</title>
</head>
<body>
<div class="container">
<header>
{% block "header" %}{% endblock %}
</header>
<main>
{% block "content" %}{% endblock %}
</main>
<footer>
{% blcok "footer" %}{% endblock %}
</footer>
</div>
</body>
</html>