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

Open in your IDE?
  1. {% extends '@Web/layout.html.twig' %}
  2. {% block title %}
  3.     Orders · {{ siteName }}
  4. {% endblock %}
  5. {% block stylesheets %}
  6.     <link href="{{ asset('build/stylesheets/common_components.css') }}" rel="stylesheet" />
  7.     <link href="{{ asset('build/stylesheets/orders.css') }}" rel="stylesheet" />
  8. {% endblock %}
  9. {% block javascripts %}
  10.     {{ parent() }}
  11.     <script src="{{ asset('build/client-bundle.js', 'webpack') }}"></script>
  12. {% endblock %}
  13. {% block content %}
  14.     {{ redux_store('appStore', initialState) }}
  15.     {{ react_component('App', {'rendering': 'client_side'}) }}
  16. {% endblock %}