Skip to content
Snippets Groups Projects
frontpage.html 3.91 KiB
Newer Older
Erxleben, Fredo's avatar
Erxleben, Fredo committed
{% include top.html %}

<body>

    {% include header.html %}

    <main>

        {% capture title-content %}
        {% include frontpage/title-content.html %}
        {% endcapture %}

        {%- include title_image.html content=title-content -%}
Erxleben, Fredo's avatar
Erxleben, Fredo committed

        <div class="frontpage-jumbotron">
            <section>
                {% if page.notification.description and page.notification.title %}
                {% include frontpage/notification.html
Erxleben, Fredo's avatar
Erxleben, Fredo committed
                            title=page.notification.title
                            description=page.notification.description %}
                {% endif %}
                <h1>News</h1>
Erxleben, Fredo's avatar
Erxleben, Fredo committed
                <div class="flex-content-wrapper">
                    {% for post in site.posts limit:3 %}
                    {% include frontpage/post-card.html post = post %}
                    {% endfor %}
                </div>
                <a href="{{ 'blog/' | relative_url }}" class="btn btn-outline-secondary">More</a>
            </section>
        </div>
        <div class="frontpage-mission-jumbotron">
            <section>
                <div class="info-col">
                    <div class="info-box">
                        <h3><i class="fas fa-user-plus" aria-hidden="true"></i>&nbsp; You & HIFIS</h3>
                        <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut
                            labore et dolore magna aliqua.</p>
                    </div>
                    <div class="info-box">
                        <a href="{{ 'mission/' | relative_url }}" class="btn btn-outline-secondary"><h3><i class="fas fa-atom" aria-hidden="true"></i>&nbsp; HIFIS Mission</h3></a>
                        <p>Strengthening and developing the ICT competences of the whole Helmholtz Association.</p>
                    </div>
                    <div class="info-box">
                        <h3><i class="fas fa-globe-europe" aria-hidden="true"></i>&nbsp; HIFIS International</h3>
                        <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut
                            labore et dolore magna aliqua.</p>
                    </div>
                    <div class="info-box">
                        <h3><i class="fas fa-road" aria-hidden="true"></i>&nbsp; Now & tomorrow - The HIFIS Roadmap</h3>
                        <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut
                            labore et dolore magna aliqua.</p>
                    </div>
                </div>
Erxleben, Fredo's avatar
Erxleben, Fredo committed
            </section>
        </div>
        <div class="frontpage-jumbotron">
            <section>
                <h1><i class="far fa-calendar-alt" aria-hidden="true"></i>&nbsp; Events</h1>
                <div class="flex-content-wrapper">
                    {% assign sorted_events = site.events | sort: "start.date" %}
                    {% assign today = "now" | date: "%Y-%m-%d" %}
                    {% assign has_upcoming_events = false %}
                    {% for event in sorted_events %}
                    {% if event.start.date < today or
Erxleben, Fredo's avatar
Erxleben, Fredo committed
                              event.registration_period.to < today %}
                    {% continue %}
                    {% else %}
                    {% assign has_upcoming_events = true %}
                    {% endif %}
                    {% include frontpage/event-card.html
Erxleben, Fredo's avatar
Erxleben, Fredo committed
                              title = event.excerpt %}
                    {% endfor %}
                    {% if has_upcoming_events == false %}
                    <article class="list-entry">
                        <h1>
                            There are no upcoming events right now ... stay tuned.
                        </h1>
                    </article>
Erxleben, Fredo's avatar
Erxleben, Fredo committed
                    {% endif %}
                </div>
            </section>
        </div>
        </section>
    </main>

    {% include footer.html %}

</body>

</html>