{% extends '@Web/layout.html.twig' %}
{% block title %}
{{ 'header_history' | trans }} · {{ siteName }}
{% endblock %}
{% block meta %}
{# <meta name="robots" content="noindex, nofollow"/> #}
{% endblock %}
{% block stylesheets %}
{{ parent() }}
<link href="{{ asset('build/stylesheets/common_components.css') }}" rel="stylesheet"/>
<link href="{{ asset('build/stylesheets/history.css') }}" rel="stylesheet"/>
{% endblock %}
{% block javascripts %}
{{ parent() }}
<script src="{{ asset('build/client-bundle.js') }}"></script>
{% endblock %}
{% block content %}
<div class="reactCustom history">
{{ redux_store('appStore', initialState) }}
{{ react_component('App', {'rendering': 'both'}) }}
</div>
{% endblock content %}