<!doctype html> <html lang=β€œen”> <head>

{% include head.html %}

</head> {%- if site.csstheme -%}

{%- assign siteTheme = site.csstheme -%}

{%- else -%}

{%- assign siteTheme = "blogger" -%}

{%- endif -%} <body class=β€œ{{siteTheme}}”>

<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id={{site.seo.gtmid}}" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->

{% if layout.header.html %}
        {% include {{layout.header.html}} %}
{% else %}
        {% include header.1.html %}
{% endif %}

      <div class="main-wrapper">
        {{ content }}
</div>

{% if layout.footer.html %}
        {% include {{layout.footer.html}} %}
{% else %}
  {% include footer.html %}
{% endif %}

{% include scripts.html %}

</body> </html>