little-hesinde/cops-web/templates/base.html

17 lines
467 B
HTML
Raw Normal View History

2024-05-02 16:10:29 +00:00
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="color-scheme" content="light dark" />
<link rel="stylesheet" href="/static/pico.min.css" />
<link rel="stylesheet" href="/static/style.css" />
<title>Hello world!</title>
</head>
<body>
<main class="container">
{% block content %}{% endblock content %}
</main>
</body>
</html>