{% extends "base.html" %} {% block crumbs %} browse / {{ item.type }} / {{ stem }} {% endblock %} {% block content %}

{{ item.title or stem }}

type
{{ item.type | type_label }}
updated
{{ item.frontmatter.get("updated", "unknown") }}
{% if item.frontmatter.get("scope") %}
scope
{{ item.frontmatter.get("scope") }}
{% endif %} {% if item.frontmatter.get("confidence") %}
confidence
{{ item.frontmatter.get("confidence") }}
{% endif %} {% if item.frontmatter.get("source") %}
source
{{ item.frontmatter.get("source") }}
{% endif %} {% if item.frontmatter.get("status") %}
status
{{ item.frontmatter.get("status") }}
{% endif %} {% set tags = item.frontmatter.get("tags") or [] %} {% if tags %}
tags
{% for tag in tags %}{{ tag }}{% endfor %}
{% endif %}
{{ body_html | safe }}
{% endblock %}