base_generic.html 387 B

12345678910111213141516171819
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. {% block title %}<title>Ethics Canvas</title>{% endblock %}
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <style>
  8. * {
  9. font-size: 10px;
  10. color: black;
  11. }
  12. </style>
  13. </head>
  14. <body>
  15. {% block content %}<p>Fucking hell it works but there's nothing here</p>{% endblock %}
  16. </body>
  17. </html>