{# Used to show a preview of the content block. It requires a base template with a {% block body %} #} {# This is so the content block can be shown independent of any other page elements but using the same static assets. #} {% extends 'base.html' %} {% load static %} {% load content_blocks %} {% block body %} {% render_content_block content_block %} {% endblock %}