Skip to content
Snippets Groups Projects
team.html 1011 B
Newer Older
  • Learn to ignore specific revisions
  • {%- 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 -%}
    
        {%- include header.html -%}
    
    Erxleben, Fredo's avatar
    Erxleben, Fredo committed
    
        <main>
    
            {%- include title_image.html-%}
    
            {%- assign team_members_core = site.data.hifis_team
                | where: "associate", false -%}
    
    Erxleben, Fredo's avatar
    Erxleben, Fredo committed
            <section>
                <article>
                    <div>
    
                        <h1>Contact</h1>
    
                        Write the HIFIS team: <code class="language-plaintext highlighter-rouge">office-at-hifis.net</code>.
    
    
    
    Erxleben, Fredo's avatar
    Erxleben, Fredo committed
                        <h1>Team</h1>
                        <div class="team_list">
    
                            {%- for person in team_members_core -%}
                            {%- include team_card.html person=person -%}
                            {%- endfor -%}
    
    Erxleben, Fredo's avatar
    Erxleben, Fredo committed
                        </div>
                    </div>
                </article>
            </section>
        </main>
    
        {%- include footer.html -%}
    
    Erxleben, Fredo's avatar
    Erxleben, Fredo committed
    </body>
    
    </html>