Reputation: 190
One template separates the site content into two columns.
Another template does not.
The template that only has one column will be used for homepage (when not signed in), and settings page. The template with two columns (content main & content sidebar) will be used for everything else.
I tried adding:
{% include "base_navbar.html" %}
that only contained my nav tags, but nothing happened.
Upvotes: 0
Views: 59
Reputation: 4646
Use extends instead of include
{% extends "base_navbar.html" %}
Upvotes: 1