base.html 408 Bytes
Newer Older
1
{% load static %}
2 3 4
<!DOCTYPE html>
<html lang="en">
    <head>
5
    <link rel="stylesheet" href="{% static 'css/style.css' %}" />
6 7 8 9 10 11 12 13 14
        <title>{% block title %}My amazing site{% endblock %}</title>
        {% block styles %}{% endblock %}
    </head>
    <body>
        <div id="content">
        {% block content %}{% endblock %}
        </div>
        {% block scripts %}{% endblock %}
    </body>
15
</html>