{% extends 'layout.html.jinja2' %} {% set menu_section = 'home' %} {% block title %}Home{% endblock %} {# This is the main template file, along with the layout. #} {# The engine is Jinja2, close to Twig (yet not as good) #} {% block content %} {% macro target_button(target) -%} {{ target.name }} {%- endmacro %}

Loading Heliopropa…
This might take a while.

Time Interval


Planets
{% for target in planets %} {{ target_button(target) }} {% endfor %}


Probes & Comets
{% for target in probes %} {{ target_button(target) }} {% endfor %} {% for target in comets %} {{ target_button(target) }} {% endfor %}


Parameters

{{ visits }} visits since 2017

Drag to zoom in, double click to zoom out.

{#
#}
{% endblock %} {% block styles %} {% endblock %} {% block scripts_footer %} {% endblock %}