templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         
  5.         <meta charset="UTF-8">
  6.         <title>k7 {% block title %}{% endblock %}</title>
  7.         <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
  8.         <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css" integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ" crossorigin="anonymous">
  9.         <script type="text/javascript" src="{{ asset('js/jeasyui/jquery.min.js') }}"></script>
  10.         <link rel="stylesheet" href="{{ asset('css/miniclick.css') }}">
  11.         {% block stylesheets %}{% endblock %}
  12.     </head>
  13.     <body>
  14.         {% for type, flash_messages in app.session.flashBag.all %}
  15.             {% for msg in flash_messages %}
  16.                 <div class="alert alert-{{ type }}">
  17.                     {{ msg|raw }}
  18.                 </div>
  19.             {% endfor %}
  20.         {% endfor %}
  21.         {% block body %}{% endblock %}
  22.         {% block javascripts %}{% endblock %}
  23. {% if do_datagrid_reload is defined %}
  24. <script>
  25.     $(function() {
  26.     if(typeof window.parent != undefined && window.parent.reloadData != undefined) {
  27.         window.parent.reloadData() ;
  28.         }
  29.     }) ;
  30. </script>
  31. {% endif %}
  32.     </body>
  33. </html>