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

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