layout.html.twig 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <title>Workflow demo application</title>
  8. {% block stylesheets %}
  9. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
  10. <style>
  11. svg text {
  12. font-size: 0.75em;
  13. font-weight: bold;
  14. }
  15. </style>
  16. {% endblock %}
  17. </head>
  18. <body>
  19. <div class="container">
  20. {% block content %}
  21. {% block main '' %}
  22. <hr />
  23. {% endblock %}
  24. </div>
  25. {% block javascripts %}
  26. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
  27. <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
  28. {% endblock %}
  29. </body>
  30. </html>