templates/base.html.twig line 1

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