{# React #}
{% extends '@Web/layout.html.twig' %}
{% block title %}
{{ title }} · {{ siteName }}
{% endblock %}
{% block meta %}
<meta name="description" content="{{ description }}" />
{# <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/ideas.css') }}" rel="stylesheet" />
{% endblock %}
{% block javascripts %}
{{ parent() }}
<script src="{{ asset('build/client-bundle.js') }}"></script>
{% endblock %}
{% block content %}
<div class="reactCustom ideabook">
{{ redux_store('appStore', initialState) }}
{{ react_component('App', {'rendering': 'both'}) }}
</div>
{% endblock content %}