16 lines
503 B
HTML
16 lines
503 B
HTML
{% set assetHash = global.random() %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
|
|
{% include "partials/meta-info.html" %}
|
|
<style>{% include "css/critical.css" %}</style>
|
|
</head>
|
|
<body>
|
|
<main tabindex="-1" id="main-content">{% block content %}{% endblock %}</main>
|
|
{% include "partials/footer.html" %}
|
|
</body>
|
|
</html>
|