mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-28 13:30:59 +00:00
13 lines
308 B
HTML
13 lines
308 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
|
|
<title>{%- block title -%} Default title {%- endblock title -%}</title>
|
|
</head>
|
|
|
|
<body class="{% block body_classes %}{% endblock body_classes %}">
|
|
{%- block body -%}{%- endblock body -%}
|
|
</body>
|
|
</html>
|