{% extends "base.html.twig" %}
{% import "./macros_typography.html.twig" as macrosTypography %}
{% import "./macros_button.html.twig" as macrosButton %}
{% set headerColor = 'header-transparent'%}
{% block content %}
{% for item in content.blocks %}
{{ include('includes/blocks/' ~ item.type ~ '.html.twig', { content : item, template : template, globalContent: content}) }}
{% endfor %}
{% endblock %}