22 lines
311 B
HTML
22 lines
311 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
{% include head.html %}
|
|
|
|
<body>
|
|
|
|
{% if site.google-analytics %}
|
|
{% include google-analytics.html %}
|
|
{% endif %}
|
|
{% include loader.html %}
|
|
{% include header.html %}
|
|
|
|
{{ content }}
|
|
|
|
{% include footer.html %}
|
|
{% include javascripts.html %}
|
|
|
|
</body>
|
|
|
|
</html>
|