2024-02-13 14:48:42 +00:00
|
|
|
{# templates/base.html #}
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2024-02-13 15:30:14 +00:00
|
|
|
<title>{% block title %}{{ title }}{% endblock title %}</title>
|
2024-02-13 14:48:42 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2024-02-13 15:30:14 +00:00
|
|
|
{% block content %}
|
|
|
|
<h1>Welcome to {{ title }}!</h1>
|
|
|
|
{% endblock content %}
|
2024-02-13 14:48:42 +00:00
|
|
|
</body>
|
|
|
|
</html>
|