24 lines
802 B
Twig
24 lines
802 B
Twig
<div class="tile production-period-tile">
|
|
<div class="tile-title">
|
|
{% if tile.productionBegin or tile.productionEnd %}
|
|
<div style="font-size: 18px; font-weight: bold; margin-bottom: 4px;">
|
|
{% if tile.productionBegin %}
|
|
{{ tile.productionBegin.year }}
|
|
{% else %}
|
|
?
|
|
{% endif %}
|
|
bis
|
|
{% if tile.productionEnd %}
|
|
{{ tile.productionEnd.year }}
|
|
{% else %}
|
|
heute
|
|
{% endif %}
|
|
</div>
|
|
{% else %}
|
|
<div style="color: #666; font-style: italic;">
|
|
Zeitraum unbekannt
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
<small>Produktion</small>
|
|
</div> |