|
@@ -1,5 +1,12 @@
|
|
|
{% if article.metadata.parts_articles %}
|
|
|
-<h4>Series</h4>
|
|
|
+ {% if article.series_title %}
|
|
|
+ <h4>{{ article.series_title }}</h4>
|
|
|
+ {% else %}
|
|
|
+ {% from '_includes/_defaults.html' import SERIES_TITLE with context %}
|
|
|
+ {%if SERIES_TITLE %}
|
|
|
+ <h4>{{ SERIES_TITLE }}</h4>
|
|
|
+ {% endif %}
|
|
|
+ {% endif %}
|
|
|
<ul class="multi-parts-list">
|
|
|
{% for part_article in article.metadata.parts_articles %}
|
|
|
<li {% if part_article == article %}class="active-part"{% endif %}>
|