<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}Retoors Cloud Solutions{% endblock %}</title>
<link rel="stylesheet" href="/static/css/base.css">
<link rel="stylesheet" href="/static/css/components/footer.css">
<link rel="stylesheet" href="/static/css/components/content_pages.css">
{% block head %}{% endblock %}
</head>
<body>
{% include 'components/navigation.html' %}
{% block content %}{% endblock %}
{% include 'components/footer.html' %}
{% include 'components/cookie_banner.html' %}
<script src="/static/js/main.js" type="module"></script>
{% block scripts %}{% endblock %}
</body>
</html>