contact-form/templates/base.askama.html

24 lines
633 B
HTML
Raw Permalink Normal View History

2022-10-29 15:12:19 +00:00
<!doctype html>
2022-12-17 17:37:04 +00:00
<html lang="{{ base.lang }}">
2022-10-29 15:12:19 +00:00
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Contact form</title>
{% block styles %}{% endblock %}
2022-12-17 17:37:04 +00:00
<link href="{{ base.path_prefix }}/static/bootstrap/bootstrap.min.css"
2022-11-06 20:24:30 +00:00
rel="stylesheet"/>
2022-10-29 15:12:19 +00:00
</head>
<body>
2023-02-26 16:12:26 +00:00
<div class="container-md">
{% block body %}{% endblock %}
</div>
2022-10-29 15:12:19 +00:00
{% block scripts %}{% endblock %}
2022-12-17 17:37:04 +00:00
<script src="{{ base.path_prefix }}/static/bootstrap/bootstrap.bundle.min.js"></script>
2022-10-29 15:12:19 +00:00
</body>
</html>