Fallback to first published date if published date not present

This commit is contained in:
Adeodato Simó 2023-09-18 21:19:14 -03:00
parent ef582f1bc2
commit 2c968e94cb
No known key found for this signature in database
GPG key ID: CDF447845F1A986F

View file

@ -40,16 +40,13 @@
</p> </p>
{% endif %} {% endif %}
{% with date=book.published_date|naturalday publisher=book.publishers|join:', ' %} {% if book.published_date or book.first_published_date %}
{% if date or book.first_published_date or book.publishers %}
{% if date or book.first_published_date %}
<meta <meta
itemprop="datePublished" itemprop="datePublished"
content="{{ book.first_published_date|default:book.published_date|date:'Y-m-d' }}" content="{{ book.first_published_date|default:book.published_date|date:'Y-m-d' }}"
> >
{% endif %} {% endif %}
<p> <p>
{% comment %} {% comment %}
@todo The publisher property needs to be an Organization or a Person. Well be using Thing which is the more generic ancestor. @todo The publisher property needs to be an Organization or a Person. Well be using Thing which is the more generic ancestor.
@see https://schema.org/Publisher @see https://schema.org/Publisher
@ -60,6 +57,7 @@
{% endfor %} {% endfor %}
{% endif %} {% endif %}
{% with date=book.published_date|default:book.first_published_date|naturalday publisher=book.publishers|join:', ' %}
{% if date and publisher %} {% if date and publisher %}
{% blocktrans %}Published {{ date }} by {{ publisher }}.{% endblocktrans %} {% blocktrans %}Published {{ date }} by {{ publisher }}.{% endblocktrans %}
{% elif date %} {% elif date %}
@ -67,7 +65,6 @@
{% elif publisher %} {% elif publisher %}
{% blocktrans %}Published by {{ publisher }}.{% endblocktrans %} {% blocktrans %}Published by {{ publisher }}.{% endblocktrans %}
{% endif %} {% endif %}
{% endwith %}
</p> </p>
{% endif %}
{% endwith %}
{% endspaceless %} {% endspaceless %}