-
Notifications
You must be signed in to change notification settings - Fork 2
/
equipe.html
44 lines (39 loc) · 1.43 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">
<div class="col">
<div class="box content">
<h3 class="title--section">L'équipe.</h3>
{% for people in site.data.people %}
<div class="people row" id="{{people.poly}}">
<div class="col">
<img
src="{{ '/assets/images/people/' | append: people.poly | append: '.jpg' | relative_url }}"
alt="{{people.name}}">
</div>
<div class="col col--important">
<h4 class="people-name">
{{people.name}}
<br>
<small>{{people.job}}</small>
</h4>
<div>{{people.bio | newline_to_br | markdownify}}</div>
{% assign bbls = site.data.bbl | where: "poly", people.poly %}
{% if bbls.size > 0 %}
<div class="people-bbl">
<h5>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>