{% extends "base.html" %} {% block title %}{{ artifact.name }} — df-storyteller{% endblock %} {% block content %}
← Back to Legends
{{ artifact.name }}
{% if artifact.item_type %}

Type

{{ artifact.item_type }}

{% endif %} {% if artifact.material %}

Material

{{ artifact.material }}

{% endif %} {% if creator_name %}

Creator

{{ lore_link("figure", creator_id, creator_name) | safe }}

{% endif %} {% if site_name %}

Location

{{ lore_link("site", site_id, site_name) | safe }}

{% endif %}
{% if artifact.description %}

Description

{{ artifact.description }}

{% endif %} {% if pages %}

Contents

This work contains {{ pages | length }} page{{ 's' if pages | length != 1 else '' }}:

    {% for page in pages %}
  • Page {{ page.page_number }}: {{ page.title }} {% if page.wc_type %} ({{ page.wc_type }}){% endif %}
  • {% endfor %}
{% endif %}
{% endblock %}