12345678910111213141516171819 |
- <!DOCTYPE html>
- <html>
- <head>
- {% block title %}<title>Ethics Canvas</title>{% endblock %}
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <style>
- * {
- font-size: 10px;
- color: black;
- }
- </style>
- </head>
- <body>
- {% block content %}<p>Fucking hell it works but there's nothing here</p>{% endblock %}
- </body>
- </html>
|