21 lines
713 B
HTML
21 lines
713 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>{% if page.title %}{{page.title}}{% else %}{{ site.title | escape }}{% endif %}</title>
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||
|
<link href="{{site.baseurl}}/assets/css/style.css" rel="stylesheet">
|
||
|
</head>
|
||
|
<body class='page {{page.bodyClass}}'>
|
||
|
{% include main-menu-mobile.html %}
|
||
|
<div id="wrapper" class="wrapper">
|
||
|
{% include header.html headerClass='header-extra' %}
|
||
|
{{content}}
|
||
|
</div>
|
||
|
{% include footer.html %}
|
||
|
{% include sub-footer.html %}
|
||
|
<script type="text/javascript" src="{{ site.baseurl }}/assets/js/scripts.js"></script>
|
||
|
{% include google-analytics.html %}
|
||
|
</body>
|
||
|
</html>
|