Skip to content
Snippets Groups Projects
team.njk 2.18 KiB
Newer Older
julientaq's avatar
julientaq committed
{% extends "base.njk" %}

Agathe's avatar
Agathe committed
     {% block content %}
julientaq's avatar
julientaq committed
{{content | safe}}
       <section class="leadershipteam">    
      
                    <header class="{{team.management.cardWidth}}">
                        <h2>{{team.management.title}}</h2>
                        <!-- <h2>{{team.management.presentation}}</h2> -->
                    </header>
            {% for item in team.management.folks %}
Agathe's avatar
Agathe committed
                <div class="grid-item {{item.cardWidth}}">
                        <figure><img src="{{item.portrait}}" alt=""></figure>
Agathe's avatar
Agathe committed
                        <h3>{{item.name}}</h3>
                        <h4>{{item.fonction}}</h4>
                        <p>{{item.description | markdownify | safe}}</p>
                </div>
            {% endfor %}
julientaq's avatar
julientaq committed
 </section>
    
<section class="board">
          <header>
                        <h2>{{team.board.title}}</h2>
                        <h3>{{team.board.presentation}}</h3>
                    </header>

        <div class="grid">
                                 {% for item in team.board.folks %}
Agathe's avatar
Agathe committed
                    <div class="grid-item {{item.cardWidth}}">
                        <figure><img src="{{item.portrait}}" alt=""></figure>
Agathe's avatar
Agathe committed
                        <h3>{{item.name}}</h3>
                        <h4>{{item.fonction}}</h4>
                        <p>{{item.description | markdownify | safe}}</p>
                    </div>
                {% endfor %}
julientaq's avatar
julientaq committed
                </section>

                <section class="specialists">        
                <header>

                        <h2>{{team.specialists.title}}</h2>
                        <h3>{{team.specialists.presentation}}</h3>
                    </header>
        <div class="grid specialists">
            {% for item in team.specialists.folks %}
                <div class="grid-item {{item.cardWidth}}">
                        <figure><img src="{{item.portrait}}" alt=""></figure>
                        <h3>{{item.name}}</h3>
                        <h4>{{item.fonction}}</h4>
                        <p>{{item.description | markdownify | safe}}</p>
                </div>
            {% endfor %}
          </div>
      </section>

  </section>