{% extends "_layout.html" %} {% set active_page = 'context' %} {% block title %}Context{% endblock %} {% block javascript %} {% include "javascript/_editor.html" %} {% include "javascript/_journal.html" %} {% endblock %} {% block content %}

Context: {{ context.hash }}

{% for context_ in context.contexts %}
Hash:
{{ context_.hash }}
Location:
{{ context_.filename }}:{{ context_.line }}
{{ context_.context|safe }}
{% endfor %}

Matching Journal Entries

{% with journal=context.journal %} {% include "_journal_table.html" %} {% endwith %} {% endblock %}