templates/api/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="en">
  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.0">
  7.     <title>API Documentation</title>
  8.     {{ include ('api/stylesheet.html.twig') }}
  9.     {% block stylesheets %} {% endblock %}
  10. </head>
  11. <body>
  12.     
  13.     {% block body %} {% endblock %}
  14. </body>
  15. </html>
  16. {{ include ('frontend/javascript.html.twig') }}
  17. {% block javascripts %} {% endblock %}