{# A page containing puppet code. Parameters: title: content: Content of page #} {% extends "base.html" %} {% block left_sidebar %} {# Class list, basically the right sidebar from module index #} {% if left_sidebar %} {{ left_sidebar }} {% endif %} {% endblock %} {% block right_sidebar %} {# All defined variables #} {% if right_sidebar %} {{ right_sidebar }} {% endif %} {% endblock %} {% block content %}

{{ title }}

{{ content }} {% endblock %} {# ft: jinja #}