diff options
Diffstat (limited to 'arduino_blog/templates/base.html')
-rw-r--r-- | arduino_blog/templates/base.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/arduino_blog/templates/base.html b/arduino_blog/templates/base.html new file mode 100644 index 0000000..253f3a2 --- /dev/null +++ b/arduino_blog/templates/base.html @@ -0,0 +1,11 @@ +{% load static %} +<!DOCTYPE html> +<html lang="en"> + {% include 'header.html' %} + <body> + {% include 'navbar.html' %} + {% block content %}{% endblock content %} + {% include 'footer.html' %} + </body> +</html> + |