Skip to content
Snippets Groups Projects
upcoming_events_list.html 1.68 KiB
<div class="events-list">
    <div class="flex-content-wrapper">
        {% assign sorted_events = include.events | sort: "start.date" %}
        {% assign countdown = include.limit | default: 3 %}
        {% assign today = "now" | date: "%Y-%m-%d" %}
        {% assign has_upcoming_events = false %}

        {% for event in sorted_events %}
            {% if event.start.date < today or
                        event.registration_period.to < today %}
                {% continue %}
            {% else %}
                {% assign has_upcoming_events = true %}
            {% endif %}

            {% include events/wide_card.html
                        title = event.excerpt %}
            
            {% assign countdown = countdown | minus: 1 %}
            {% if countdown == 0 %}{% break %}{% endif %}
        {% endfor %}
        {% if has_upcoming_events == false %}
            <article class="list-entry">
                <h4>
                    Check out the <strong>
                    <a href="https://events.hifis.net/category/4/">
                    <i class="fas fa-external-link-alt"></i> HIFIS Events page</a></strong>
                    or the <strong>
                    <a href="https://www.helmholtz-hida.de/course-catalog/?search%5Bfilter%5D%5B0%5D=tags%3AHIFIS&search%5Bfilter%5D%5B1%5D=">
                    <i class="fas fa-external-link-alt"></i> HIDA course catalog</a></strong>
                    for upcoming HIFIS courses and events.
                </h4>
            </article>
        {% else %}
            <div class="see-more-link">
                <strong><a href="{% link events.md %}">See More Events</a></strong>
            </div>
        {% endif %}
    </div>
</div>