{% sw_extends '@Storefront/storefront/layout/meta.html.twig' %}
{% block layout_head_title %}
<title itemprop="name">
{{ basicConfig.shopName }}
</title>
{% endblock %}
{% block layout_head_meta_tags %}
{% if context.customer is null or context.customer is not defined %}
{% if page.cmsPage is not null or page.cmsPage is defined %}
<meta name="aks-page-type" content="cmsPage">
<meta name="aks-page-ID" content="{{ page.header.navigation.active.id }}">
{% endif %}
{% if page.product is not null or page.product is defined %}
<meta name="aks-page-type" content="product">
<meta name="aks-page-ID" content="{{ page.product.id }}">
{% endif %}
<script>
if (document.querySelector("meta[name='aks-page-type']") && document.querySelector("meta[name='aks-page-ID']")) {
let data = {
type: document.querySelector("meta[name='aks-page-type']").getAttribute("content"),
id: document.querySelector("meta[name='aks-page-ID']").getAttribute("content")
};
console.log(JSON.stringify(data));
var xhr = new XMLHttpRequest();
var url = "/HelmaAuth";
xhr.open("POST", url, true);
xhr.setRequestHeader("Content-Type", "application/json");
xhr.onreadystatechange = function () {
if (xhr.readyState === 4 && xhr.status === 200) {
var json = JSON.parse(xhr.responseText);
if (json.status == 1) {
window.location.replace(json.reURl);
}
}
};
xhr.send(JSON.stringify(data));
}
</script>
{% endif %}
{{ parent() }}
{% endblock %}