{% extends "base.html" %} {# ================================================================================ Blog Shell Template ================================================================================ Shared layout for all blog pages. Extends base.html and provides a consistent blog-shell container. No action bar, no breadcrumbs. Child templates extend this and override blog_content (and optionally blog_hero, blog_sidebar). blog_after_content is invoked from within blog_content by templates that need it (e.g. single). USAGE: {% extends "blog/shell.html" %} {% block blog_content %}...{% end %} ================================================================================ #} {% block content %}
{% block blog_hero %}{% end %}
{% block blog_content %}{% end %}
{% end %}