Skip to content
Snippets Groups Projects
team.html 1.36 KiB
Newer Older
  • Learn to ignore specific revisions
  • Erxleben, Fredo's avatar
    Erxleben, Fredo committed
    
    {% comment %}
        This page uses _data/hifis_team.yml to generate its content.
        It does on purpose NOT include the content of the markdown page.
    {% endcomment %}
    
    {% include top.html %}
    
    <body>
    
        {% include header.html %}
    
        <main>
    
    Erxleben, Fredo's avatar
    Erxleben, Fredo committed
            {% include title_image.html%}
    
    Erxleben, Fredo's avatar
    Erxleben, Fredo committed
    
            {% assign team_members_core = site.data.hifis_team
                | where: "associate", false | sort: "name" %}
            {% assign team_members_associate = site.data.hifis_team
                | where: "associate", true | sort: "name" %}
            <section>
                <article>
                    <div>
                        <h1>Team</h1>
                        <div class="team_list">
                            {% for person in team_members_core %}
                                {% include team_card.html person=person %}
                            {% endfor %}
                        </div>
                    </div>
                </article>
            </section>
    
            <section>
                <article>
                    <div>
                        <h1>Associates</h1>
                        <div class="team_list">
                            {% for person in team_members_associate %}
                                {% include team_card.html person=person %}
                            {% endfor %}
                        </div>
                    </div>
                </article>
            </section>
        </main>
    
        {% include footer.html %}
    
    </body>
    
    </html>