-
Notifications
You must be signed in to change notification settings - Fork 4
/
authors.html
40 lines (40 loc) · 2.1 KB
/
authors.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
---
layout: page
title: "L'équipe CovidTracker"
subtitle: "CovidTracker est une site conçu et maintenu par des bénévoles."
permalink: /contributeurs
---
<div class="container py-5">
<div class="row text-center">
{% for author in site.data.authors %}
<div class="col-xl-3 col-sm-6 mb-5">
<div class="bg-white rounded shadow-sm py-5 px-4"><img src=
{% if author.github %}
"https://github.com/{{author.github}}.png"
{% else %}
{{ "/assets/img/avatar1.png" | prepend: site.baseurl }}
{% endif %}
alt="" width="100" class="img-fluid rounded-circle mb-3 img-thumbnail shadow-sm">
<h5 class="mb-0">{{author.name}}</h5><span class="small text-uppercase text-muted">{{author.role}}</span>
<ul class="social mb-0 list-inline mt-3">
{% if author.twitter %}
<li class="list-inline-item"><a href="https://twitter.com/{{author.twitter}}" class="social-link" target="_blank"><i class="fab fa-twitter"></i></a></li>
{% endif %}
{% if author.github %}
<li class="list-inline-item"><a href="https://github.com/{{author.github}}" class="social-link" target="_blank"><i class="fab fa-github"></i></a></li>
{% endif %}
{% if author.linkedin %}
<li class="list-inline-item"><a href="https://linkedin.com/in/{{author.linkedin}}" class="social-link" target="_blank"><i class="fab fa-linkedin"></i></a></li>
{% endif %}
{% if author.mastodon %}
<li class="list-inline-item"><a href="{{author.mastodon}}" class="social-link" target="_blank"><i class="fab fa-mastodon"></i></a></li>
{% endif %}
{% if author.website %}
<li class="list-inline-item"><a href="{{author.website}}" class="social-link" target="_blank"><i class="fas fa-link"></i></a></li>
{% endif %}
</ul>
</div>
</div>
{% endfor %}
</div>
</div>