{% extends "base.html" %} {% block title %}{{ page_name }}{% endblock %} {% block navigation %} {# Purely internal navigation links to take you up/down the page #} {% endblock %} {% block content %} {# Show off our figures! #} {% for section in sections | sort(attribute="name") %}

{{ section.name }}

{% for plot in section.plots %}

{{ plot.title }}

{{ plot.caption }}

{% endfor %}
{% endfor %} {# Create lightbox targets. #} {% for section in sections | sort(attribute="name") %} {% for plot in section.plots %} {% endfor %} {% endfor %} {% endblock %} {% block footer %}

Created with version {{ pipeline_version }} of lmsi on {{ creation_date }}.

{% endblock %}