checkout/src/common/templates/common/base.html

36 lines
1.2 KiB
HTML
Raw Normal View History

2022-04-24 18:59:04 +02:00
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
2022-04-25 17:07:37 +02:00
<meta name="viewport" content="width=device-width, initial-scale=1">
2022-04-24 18:59:04 +02:00
<title>Checkout</title>
2023-03-25 21:40:49 +01:00
<link href="{% static "vendor/bootstrap-5.2.3-dist/css/bootstrap.min.css" %}"
2023-03-25 20:01:14 +01:00
rel="stylesheet">
2023-03-27 18:06:17 +02:00
{% include "common/favicon.html" %}
2022-04-25 19:54:57 +02:00
<style>
body {
margin-bottom: 2em;
touch-action: manipulation;
2022-04-25 19:54:57 +02:00
}
</style>
2023-03-25 21:40:49 +01:00
<script defer src="{% static "vendor/fontawesome-6.3.0-free/brands.min.js" %}"></script>
<script defer src="{% static "vendor/fontawesome-6.3.0-free/solid.min.js" %}"></script>
<script defer src="{% static "vendor/fontawesome-6.3.0-free/fontawesome.min.js" %}"></script>
2022-04-25 19:54:57 +02:00
2022-04-24 18:59:04 +02:00
{% block extrahead %}
{% endblock %}
</head>
<body>
2022-04-25 17:17:58 +02:00
<div class="container-fluid">
2022-04-25 16:27:45 +02:00
{% include "common/navbar.html" %}
2022-04-25 17:07:37 +02:00
{% include "common/messages.html" %}
2022-04-24 18:59:04 +02:00
{% block content %}
{% endblock %}
</div>
2023-03-25 21:40:49 +01:00
<script src="{% static "vendor/bootstrap-5.2.3-dist/js/bootstrap.bundle.min.js" %}"></script>
2022-09-25 19:51:21 +02:00
{% block extrascript %}
{% endblock %}
2022-04-24 18:59:04 +02:00
</body>
</html>