You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

base.html 197B

123456789101112
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>My first page</title>
  5. <meta charset="utf-8">
  6. </head>
  7. <body>
  8. <div>
  9. {% block body %} Platzhalter {% endblock body %}
  10. </div>
  11. </body>
  12. </html>