{% load extra_filters %} {% load static %} {% comment %} This template is responsible for rendering the main navigation on each page that uses it. It requires two arguments to be set in the include: * `dropdown` (bool): True to render the dropdowns included, False to omit them * `icon_weight` (str): Either "fas", "far" or "fal" to correspond with Font-Awesome's weight classes. This will not affect branding icons, which have the "fab" class. * use_logo (bool): True to render the navbar with the site logo on the left side, False to use an icon with text instead For example, to use light icons and no dropdowns, you could use the following in your template: {% include "base/navbar.html" with icon_weight="fal" dropdowns=False %} {% endcomment %}