summaryrefslogtreecommitdiff
path: root/arduino_blog/templates/base.html
blob: 253f3a209c7e58f075ccee114bb15e2ec69ee364 (plain)
1
2
3
4
5
6
7
8
9
10
11
{% load static %}
<!DOCTYPE html>
<html lang="en">
    {% include 'header.html' %}
    <body>
        {% include 'navbar.html' %}
        {% block content %}{% endblock content %}
        {% include 'footer.html' %}
    </body>
</html>