Skip to content
Snippets Groups Projects
frontpage.html 4.81 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 -%}
        <div class="frontpage-wide-jumbotron">
Erxleben, Fredo's avatar
Erxleben, Fredo committed
            <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 
                    <a class="rss-posts-button" href="{{ '/feed/news.xml' | relative_url }}"
Uwe Jandt (DESY, HIFIS)'s avatar
Uwe Jandt (DESY, HIFIS) committed
                       title="Subscribe to HIFIS News Feed"
                       type="application/atom+xml"
                       download>
                        <i class="fas fa-rss"></i>
                    </a>                
                    and Announcements                     
Uwe Jandt (DESY, HIFIS)'s avatar
Uwe Jandt (DESY, HIFIS) committed
                    <a href="https://lists.desy.de/sympa/subscribe/hifis-announce"  
                    title="Subscribe to HIFIS Announcements Letter - also unsubscribe">
                        <i class="fas fa-bell"></i>
                    </a>                
                <div class="flex-cards">
                    {%- assign posts = site.posts | where:"lang", site.default.lang -%}
                    {%- for post in posts limit:5 -%}
                    {%- assign post_translated = site.categories[page.lang] | where_exp: "item", "post.lang_ref == item.lang_ref" | first -%}
                    {%- if forloop.index < 4 -%}
                    {%- assign class="" -%}
                    {%- else -%}
                    {%- assign class="hide-on-mobile" -%}
                    {%- endif -%}
                    {%- if post_translated -%}
                    {%- include cards/post_card.html post=post_translated class=class -%}
                    {%- include cards/post_card.html post=post class=class -%}
Erxleben, Fredo's avatar
Erxleben, Fredo committed
                </div>
                <a href="{{ 'news/' | relative_url }}" class="btn btn-outline-secondary">More HIFIS News</a>
Erxleben, Fredo's avatar
Erxleben, Fredo committed
            </section>
        </div>
        <div class="transition-block">

            {% include transition.html direction="top" %}
            <div class="frontpage-mission-jumbotron">
                <section>
                    <div class="info-col">
                            <a href="{% link mission/index.html %}" class="btn btn-outline-primary">
                                <h3><i class="fas fa-atom" aria-hidden="true"></i>&nbsp; HIFIS Mission</h3>
                            <p>Our mission is to strengthen and develop the ICT competences of the whole Helmholtz Association. 
                            We want to support you - as a scientist, Helmholtz employee or stakeholder of research projects.</p>
                            <a href="{% link mission/publications.md %}" class="btn btn-outline-primary">
                                <h3><i class="fas fa-atom" aria-hidden="true"></i>&nbsp; Documentation and Publications</h3>
                            <p>See here for publications, documentations and presentations about HIFIS.</p>
                        <div class="info-box">
                            <a href="{% link partners.md %}" class="btn btn-outline-primary">
                                <h3><i class="fas fa-globe-europe" aria-hidden="true"></i>&nbsp; HIFIS Partners</h3>
                            </a>
                            <p>Take a look at our partners, within the Helmholtz Association and throughout the World.
                            </p>
                        </div>
                        <div class="info-box">
                            <a href="{% link roadmap/index.md %}" class="btn btn-outline-primary">
                                <h3><i class="fas fa-road" aria-hidden="true"></i>&nbsp; Now & tomorrow - The HIFIS
                                    Roadmap
                                </h3>
                            </a>
                            <p>Get the latest updates of the HIFIS roadmap, summarizing our goals for the months
                                and years to come.</p>
Erxleben, Fredo's avatar
Erxleben, Fredo committed
        </div>
Erxleben, Fredo's avatar
Erxleben, Fredo committed
    </main>

    {% include footer.html %}

</body>

</html>