{# @var craft \craft\web\twig\variables\CraftVariable #} {# @var entry \craft\elements\Entry #} {# Master Layout ------------------------------------------------------------ This i the basic layout. Feel free to modify #} {# -- CHECK JS -- #} {% include '_partials/global/_checkJS.html' %} {# -- CRITICAL CSS -- #} {% set cacheVal = getCookie('critical-css') %} {% if not cacheVal or craft.app.config.general.devMode %} {{ setCookie('critical-css', now | date_modify("+7 days").timestamp ) }} {% block appInlineCSS %} {% endblock %} {% endif %} {# -- CSS Part -- #} {% include '_partials/header/_css-part.html' %} {# -- META -- #} {% include '_partials/header/_meta.html' %} {# -- SCRIPTS -- #} {% include '_partials/header/_scripts.html' %} {# -- SEO & TITLE TAG -- #} {% include '_partials/header/_seo.html' %} {# -- FAV ICON -- #} {% include '_partials/header/_favicons.html' %} {% block siteHeader %}{% endblock %} {% minify html %} {# -- Preloader#} {% include '_atoms/preloader/_template.html' only %}
{% block appContent %} Content {% endblock %}
{# -- SCRIPTS -- #} {% include '_partials/footer/_scripts.html' only %} {% endminify %}