src/Ox/HoardBundle/Resources/views/layout.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block noscript %}
  3.     <noscript>
  4.         <div class="container" style="text-align:center; font-size:24px;">
  5.             <div style="position: fixed; top: 0px; left: 0px; z-index: 3000; height: 100%; width: 100%; background-color: #FFFFFF;">
  6.                 <p>This website requires Javascript to be enabled in your browser.</p>
  7.                 <p>Please follow the instructions to enable Javascript at <a href="http://www.enable-javascript.com/" target="_blank">http://www.enable-javascript.com/</a></p></div></div>
  8.     </noscript>
  9. {% endblock %}
  10.     
  11. {% block menu %}
  12.     {% embed 'menu.html.twig' %}
  13.     {% endembed %}
  14.  {% endblock %}
  15.     
  16.   {% block header %}  
  17.     {% embed 'header-subpage.html.twig' %}
  18.     {% endembed %}
  19. {% endblock %}
  20. {% block stylesheets %}
  21.     <link href='//fonts.googleapis.com/css?family=Hind:600,300' rel='stylesheet' type='text/css'>
  22.     <link rel="stylesheet" href="//code.jquery.com/ui/1.11.2/themes/smoothness/jquery-ui.css">
  23.     {% embed 'import-libs/bootstrap.css.html.twig' %}{% endembed %}
  24.     {% embed 'import-libs/fontawesome.css.html.twig' %}{% endembed %}
  25.     {% embed 'import-libs/jqueryDatatables.css.html.twig' %}{% endembed %}
  26.     {{ encore_entry_link_tags('css/v2') }}
  27. {% endblock %}
  28. {% block javascripts %}
  29.     <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.js"></script>
  30.     <script type="text/javascript" src="//code.jquery.com/ui/1.11.2/jquery-ui.js"></script>
  31.     {% embed 'import-libs/bootstrap.js.html.twig' %}{% endembed %}
  32.     {% embed 'import-libs/jqueryDatatables.js.html.twig' %}{% endembed %}
  33.     <script type="text/javascript" src="/bundles/oxhoard/js/data_table.js"></script>
  34. {% endblock %}
  35. {% block body %}
  36. {% endblock %}
  37. {% block footer %}
  38.     {% embed 'footer.html.twig' %}
  39.     {% endembed %}
  40. {% endblock %}