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
If you want to use the same navbar in every page, you don't need the {% block navbar %}...{% endblock %} in layout.html. Alternatively, you might have to use {{ super() }} as described here.