awebsite/templates/shortcodes/timeline.html

24 lines
651 B
HTML
Raw Normal View History

2025-05-01 03:20:23 +02:00
{% set dt = load_data(literal = body, format="json") %}
<div id="timeline-content">
<ul class="timeline">
{% for d in dt %}
<li class="event" data-from="{{ d.from }}" data-to="{{ d.to }}">
{% if d.icon %}
<i class="{{ d.icon }} timeline-icon"></i>
{% endif %}
<h3>{{ d.title | markdown | safe }}</h3>
{% if d.location %}
<p><strong>{{ d.location }}</strong></p>
{% endif %}
<p>{{ d.body | safe }}</p>
{% if d.link %}
<p><a class="external" href="{{ d.link }}" target="_blank" rel="noopener">{{ d.link }}</a></p>
{% endif %}
</li>
{% endfor %}
</ul>
</div>