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

Context: {{ ehash }}

{% if context %}
Hash:
{{ context.hash }}
Location:
{{ context.filename }}:{{ context.line }}
{{ context.context|safe }}

Journal Entry

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

No entry matches the given hash.

{% endif %} {% endblock %}