{% extends "base.html" %} {% block title %}Artifact · Striatum{% endblock %} {% block main %}

Artifact

{{ artifact.artifact_kind }} {% if artifact.logical_name %} {{ artifact.logical_name }} {% endif %}

Path

{{ artifact.repo_path }}

Metadata

Artifact ID
{{ artifact.artifact_id }}
SHA-256
{{ artifact.content_sha256 }}
Size
{{ artifact.size_bytes }} bytes
Created
{{ artifact.created_at }}
{% if artifact.author_line %}
Author
{{ artifact.author_line }}
{% endif %}
{% if rendered_md %}

Body

{{ rendered_md | safe }}
{% elif body_text %}

Body

{{ body_text }}
{% else %}

Inline rendering is not available for this artifact kind. Use the raw API: GET /v1/artifacts/{{ artifact.artifact_id }}/raw.

{% endif %}
{% endblock %}