{% extends "base.html" %} {% set footnote_lut = dict() %} {% set footnotes = namespace(i=1) %} {% block title %}{{ place.name }}{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}

{{ place.name }}

{% if place.geoloc %}
{% else %}
No Location
{% endif %} {% set uri = url_root + 'place/' + place.id|string %}
Name: {{ place.name }}
URI:{{ uri }}
Place type: {{ place_type.type }}
Geolocation: {% if place.geoloc %} {{ place.geoloc_str | safe }} {% else %} unknown {% endif %}
Confidence of location {{ place.confidence or 'unknown' }}
{% if place.comment %}

{{ place.comment }}

{% endif %}

Names

See Also

{% if external_uris|length %} {% else %}

This place is not linked to any external URIs.

{% endif %}

Religions

List all pieces of evidence for {{ place.name }}.
{% if persons | length %}

Persons

{% endif %}

Sources

    {% for sid, fnr in footnote_lut.items() %}
  1. {{ sources[sid].name }} {%- if source_pages[sid] -%} : {{ source_pages[sid] }}. {%- else -%}.{% endif %} ({{ sources[sid].source_type }})
  2. {% endfor %}

How to Cite

Barczok, Ralph, and Bernd A. Vest. {{ place.name }}. In: Damast — A Research System to Analyze Multi-Religious Constellations in the Islamicate World, edited by Dorothea Weltecke, Steffen Koch, Ralph Barczok, Max Franke, Florian Jäckel, and Bernd A. Vest. . Accessed . {{ uri }}, data deposited at DaRUS, https://doi.org/10.18419/darus-2318.

{% endblock %}