File size: 968 Bytes
7929f62 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | {% extends "dashboard.twig" %}
{% import 'ajaxMacros.twig' as ajax %}
{% block topcontrols %}
{% include "@CoreHome/_siteSelectHeader.twig" %}
{% include "@CoreHome/_periodSelect.twig" %}
{{ postEvent("Template.nextToCalendar") }}
<div vue-entry="Dashboard.DashboardSettings"></div>
{% include "@CoreHome/_headerMessage.twig" %}
{% endblock %}
{% block content %}
{% if exampleFeatureEnabled %}
<!-- Feature flag example enabled -->
{% endif %}
{{ ajax.requestErrorDiv(contactEmail|default(''), areAdsForProfessionalServicesEnabled, currentModule, showMoreFaqInfo) }}
{{ ajax.loadingDiv() }}
<div id="content" class="home">
{% if content %}{{ content }}{% endif %}
<div vue-entry="CoreHome.ReportingPage"
groups-without-tracking-requirement="{{ groupsWithoutTrackingRequirement|default([])|json_encode|e('html_attr') }}"></div>
</div>
<div class="clear"></div>
{% endblock %}
|