21 lines
504 B
Twig
21 lines
504 B
Twig
<!DOCTYPE html>
|
|
<html {{ site.language_attributes }}>
|
|
<head>
|
|
<meta charset="{{ site.charset }}">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
{{ function('wp_head') }}
|
|
</head>
|
|
<body class="{{ body_class }}">
|
|
{% include 'partials/header.twig' %}
|
|
|
|
<main>
|
|
<div class="container">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</main>
|
|
|
|
{% include 'partials/footer.twig' %}
|
|
|
|
{{ function('wp_footer') }}
|
|
</body>
|
|
</html> |