src/WebBundle/Resources/views/History/index.html.twig line 1

Open in your IDE?
  1. {% extends '@Web/layout.html.twig' %}
  2. {% block title %}
  3.     {{ 'header_history' | trans }} · {{ siteName }}
  4. {% endblock %}
  5. {% block meta %}
  6.     {# <meta name="robots" content="noindex, nofollow"/> #}
  7. {% endblock %}
  8. {% block stylesheets %}
  9.     {{ parent() }}
  10.     <link href="{{ asset('build/stylesheets/common_components.css') }}" rel="stylesheet"/>
  11.     <link href="{{ asset('build/stylesheets/history.css') }}" rel="stylesheet"/>
  12. {% endblock %}
  13. {% block javascripts %}
  14.     {{ parent() }}
  15.     <script src="{{ asset('build/client-bundle.js') }}"></script>
  16. {% endblock %}
  17. {% block content %}
  18.     <div class="reactCustom history">
  19.         {{ redux_store('appStore', initialState) }}
  20.         {{ react_component('App', {'rendering': 'both'}) }}
  21.     </div>
  22. {% endblock content %}