{% extends "base.html" %} {% block title %}{{ page_name }}{% endblock %} {% block navigation %} {# Purely internal navigation links to take you up/down the page #} {% endblock %} {% block content %}

Halo {{halo.unique_id}}

Halo Properties

{# Show off our images! #} {% for image in images | sort(attribute="base_name") %}

{{ image.name }}

{% for projection in ["default", "face_on", "edge_on"] %} {% if image[projection] %}

{{ image.name }}

{{ projection | camel_to_title }} projection.

{% endif %} {% endfor %}
{% endfor %} {# Create lightbox targets. #} {% for image in images | sort(attribute="base_name") %} {% for projection in ["default", "face_on", "edge_on"] %} {% if image[projection] %} {% endif %} {% endfor %} {% endfor %} {% endblock %} {% block footer %}

Created with version {{ pipeline_version }} of the pipeline with version {{ velociraptor_version }} of the velociraptor python library on {{ creation_date }}.

{% endblock %}