{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>{% block title %}Drycc CaaS{% endblock %}</title>
    <link rel="stylesheet" href="{% static 'css/main.css' %}" type="text/css">
    {% block extra_head %}{% endblock %}
</head>
<body>
    <div class="page-wrap gradient-primary">
        <div class="container">
            {% block content %}{% endblock %}
        </div>
        {% include "base/footer.html" %}
    </div>
    {% block extra_scripts %}{% endblock %}
</body>
</html>
