summaryrefslogtreecommitdiff
path: root/resources/views/root.twig
blob: 3075ebab7354b578f6587866366de89295319e65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html {{ site.language_attributes }}>
<head>
    <meta charset="{{ site.charset }}" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <meta name="description" content="{{ site.description }}">
    {% block meta %}{% endblock %}
    {{ function('wp_head') }}
    {% block css %}{% endblock %}
</head>
<body class="{{ body_class }}">
{% block body %}{% endblock %}
{{ function('wp_footer') }}
{% block js %}{% endblock %}
</body>
</html>