layout.html.twig 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>Muzi.ch - {% block title %}{% endblock %}</title>
  5. {% include 'MuzichCoreBundle:Layout:head.html.twig' %}
  6. {% block css %}{% endblock %}
  7. {% block js %}{% endblock %}
  8. </head>
  9. <body>
  10. {% include 'MuzichCoreBundle:Layout:noscript.html.twig' %}
  11. {% include 'MuzichCoreBundle:Autoplay:autoplay.html.twig' %}
  12. <div id="container">
  13. <div id="main_content">
  14. <header id="header">
  15. {% include 'MuzichCoreBundle:Layout:header.html.twig' %}
  16. </header>
  17. {% include 'MuzichCoreBundle:Layout:flash_messages.html.twig' %}
  18. <div id="content">
  19. <div id="main">
  20. <div id="mainbox" class="nicebox {% block mainbox_classes %}{% endblock %}">
  21. {% block main_content %}{% endblock %}
  22. {% block fos_user_content %}{% endblock %}
  23. </div>
  24. </div>
  25. <aside id="sidebar">
  26. {% include 'MuzichCoreBundle:Layout:side.html.twig' %}
  27. </aside>
  28. </div>
  29. </div>
  30. <div id="footer">
  31. {% include 'MuzichCoreBundle:Layout:footer.html.twig' %}
  32. </div>
  33. </div>
  34. </body>
  35. </html>