diff --git a/content/posts/kurzprosa/aw-phantastische-geschichten-1.md b/content/posts/kurzprosa/aw-phantastische-geschichten-1.md
index a344f4d..6fdb978 100644
--- a/content/posts/kurzprosa/aw-phantastische-geschichten-1.md
+++ b/content/posts/kurzprosa/aw-phantastische-geschichten-1.md
@@ -6,7 +6,7 @@ stats:
series: Potsdams Andere Welten
issue: 1
editor: Tobias Radloff
- published_in:
+ published_as:
- title: Veranstaltungsausgabe
publisher: Selbstverlag
isbn: 978-3-00-077853-7
diff --git a/content/posts/kurzprosa/aw-phantastische-geschichten-2.md b/content/posts/kurzprosa/aw-phantastische-geschichten-2.md
index 3e33db6..6b44907 100644
--- a/content/posts/kurzprosa/aw-phantastische-geschichten-2.md
+++ b/content/posts/kurzprosa/aw-phantastische-geschichten-2.md
@@ -6,7 +6,7 @@ stats:
series: Potsdams Andere Welten
issue: 2
editor: Tobias Radloff
- published_in:
+ published_as:
- title: Veranstaltungsausgabe
publisher: Selbstverlag
link: https://www.potsdams-andere-welten.de
diff --git a/theme/templates/article.html b/theme/templates/article.html
index 987b024..c52870e 100644
--- a/theme/templates/article.html
+++ b/theme/templates/article.html
@@ -27,72 +27,80 @@
Details
- {% if article.stats %}
+ {% if article.stats %}
{# {% if article.date %}
- Erstveröffentlichung: {{ article.date.strftime("%d.%m.%Y") }}
{% endif %} #}
- {% if article.stats.series %}
+ {% if article.stats.series %}
- aus der Reihe "{{ article.stats.series }}"
- {% endif %}
- {% if article.stats.issue %}
+ {% endif %}
+ {% if article.stats.issue %}
- Ausgabe {{ article.stats.issue }}
- {% endif %}
- {% if article.stats.editor %}
+ {% endif %}
+ {% if article.stats.editor %}
- herausgegeben von {{ article.stats.editor }}
- {% endif %}
+ {% endif %}
+ {% if article.stats.published_in or article.stats.published_as %}
+ {% set ns = namespace() %}
{% if article.stats.published_in %}
- {% for p in article.stats.published_in %}
- {% if p.title %}
-{# - Veröffentlicht in {% if p.link %}{% endif %}{{ p.title }}{% if p.link %}{% endif %} #}
-
- Veröffentlicht in {{ p.title }}
-
+ {% set ns.stats = article.stats.published_in %}
+ {% set ns.title_line = "Veröffentlicht in" %}
+ {% else %}
+ {% set ns.stats = article.stats.published_as %}
+ {% set ns.title_line = "Verfügbar als" %}
{% endif %}
- {% if p.date %}
+ {% for p in ns.stats %}
+ {% if p.title %}
+{# - Veröffentlicht in {% if p.link %}{% endif %}{{ p.title }}{% if p.link %}{% endif %} #}
+
- {{ ns.title_line }} {{ p.title }}
+
+ {% endif %}
+ {% if p.date %}
- am {{ p.date.strftime("%d.%m.%Y") }}
- {% endif %}
- {% if p.issue %}
+ {% endif %}
+ {% if p.issue %}
- Ausgabe {{ p.issue }}
- {% endif %}
- {% if p.publisher %}
+ {% endif %}
+ {% if p.publisher %}
- Verlag: {{ p.publisher }}
- {% endif %}
- {% if p.series %}
+ {% endif %}
+ {% if p.series %}
- aus der Reihe "{{ p.series }}"
- {% endif %}
- {% if p.editor %}
+ {% endif %}
+ {% if p.editor %}
- herausgegeben von {{ p.editor }}
- {% endif %}
- {% if p.isbn %}
+ {% endif %}
+ {% if p.isbn %}
- ISBN: {{ p.isbn }}
- {% endif %}
- {% if p.issn %}
+ {% endif %}
+ {% if p.issn %}
- ISSN: {{ p.issn }}
- {% endif %}
- {% if p.read_it_full %}
+ {% endif %}
+ {% if p.read_it_full %}
- Volltext verfügbar
- {% endif %}
- {% if p.read_it_partial %}
+ {% endif %}
+ {% if p.read_it_partial %}
- Leseprobe verfügbar
- {% endif %}
- {% if p.link and p.link_text %}
+ {% endif %}
+ {% if p.link and p.link_text %}
- {{ p.link_text }}
- {% endif %}
- {% if p.title %}
+ {% endif %}
+ {% if p.title %}
- {% endif %}
+ {% endif %}
{% endfor %}
- {% endif %}
- {% endif %}
- {% if article.tags %}
+ {% endif %}
+ {% endif %}
+ {% if article.tags %}
- Schlagworte:
- {% for t in article.tags %}
+ {% for t in article.tags %}
- {{ t }}
- {% endfor %}
+ {% endfor %}
- {% endif %}
+ {% endif %}
{% endif %}