-
Notifications
You must be signed in to change notification settings - Fork 6
/
equipe.html
44 lines (39 loc) · 1.57 KB
/
equipe.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---
layout: default
title: L'équipe
---
<div class="row row-page">
<div class="col">
<div class="box content content-equipe" id="toShuffle">
<h3 class="title--section">Notre collectif.</h3>
{% for people in site.data.people %}
<div class="people row shuffleMe" id="{{people.poly}}">
<div class="col">
<img alt="{{people.name}}"
class="img-people" src="{{ '/assets/images/people/' | append: people.poly | append: '.webp' | absolute_url }}">
</div>
<div class="col col--important">
<h4 class="people-name">
{{people.name}}
<br>
<small>{{people.job}}</small>
</h4>
<i>{{people.accroche}}</i>
<div>{{people.bio | rstrip | prepend: '"' | append: '"' | newline_to_br | markdownify}}</div>
{% assign bbls = site.data.bbl | where: "poly", people.poly %}
{% if bbls.size > 0 %}
<div class="people-bbl">
<h5>Mes BBL:</h5>
<ul>
{% for bbl in bbls %}
<li><a href="/bbl.html#{{bbl.title | slugify}}">{{bbl.title}}</a></li>
{% endfor %}
</ul>
</div>
{% endif %}
</div>
</div>
{% endfor %}
</div>
</div>
</div>