Initial commit
This commit is contained in:
21
templates/base.twig
Normal file
21
templates/base.twig
Normal file
@@ -0,0 +1,21 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user