{% extends "base.html" %} {% import "_links.html" as links with context %} {% block title %}{{ page.title }} — Cairn Dashboard{% endblock %} {% block content %}

{{ page.title }}

{{ page.state }} {{ page.staleness }}

{{ page.html | safe }}
{% if page.sources %}

Sources

    {% for source in page.sources %}
  • {% if source.symbol %} symbol: {%- if source.symbol in page.ref_hrefs %} {{ source.symbol }} {%- else %} {{ source.symbol }}{% endif %} {% elif source.path %} path: {{ source.path }} {% else %} {% for key, value in source.items() %}{{ key }}: {{ value }}{% if not loop.last %}, {% endif %}{% endfor %} {% endif %}
  • {% endfor %}
{% endif %} {% if prev or next %}

{%- if prev %}← {{ prev.title }}{% else %}{% endif %} {%- if prev and next %} · {% endif %} {%- if next %}{{ next.title }} →{% else %}{% endif %}

{% endif %}
{% if page.toc %} {% endif %}
{% endblock %} {% block scripts %} {#- Mermaid fences render live client-side; offline/no-JS keeps the code block visible (the renderer emits pre.mermaid with escaped text). -#} {% endblock %}