{% extends 'base/base.html' %} {% load static %} {% load page_src %} {% block title %}{{ page_title }}{% endblock %} {% block head %} {% endblock %} {% block content %} {% include "base/navbar.html" %} {# Article breadcrumb #} {% for item in breadcrumb_items %} {{ item.name }} {% endfor %} {{ page_title }} {# Sub-Article dropdown for category pages #} {% if subarticles %} {% include "content/dropdown.html" %} {% endif %} {# Edit on GitHub for content articles #} {% if page and not tag %} Edit on GitHub {% endif %} {% block title_element %}{{ page_title }}{% endblock %} {% block page_content %}{% endblock %} {% endblock %}