I want to show a nav bar on every page. In PHP, I would write the nav bar then include it on the other pages. I tried to include or extend the nav bar template into the other
You can include the nav bar in every page.
nav.html
NAVBAR
layout.html
: note the {% include 'nav.html' %}
{% include 'nav.html' %}
{% block content %}
{% endblock %}
index.html
{% extends "layout.html" %}
{% block content %}
This is the homepage!
{% endblock %}
sometimes, it is a good way to design you web page. You break you page to, for example: head.html, nav.html, footer.html... you can include them in the layout.html to use them.