-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
24 lines (24 loc) · 920 Bytes
/
about.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
---
layout: default
title: JTech auteurs
permalink: /about/
---
<section class="wrapper spotlight alt style1">
<div class="inner">
<section class="team">
{% for authorEntry in site.data.authors %}
{% assign author = authorEntry[1] %}
<div class="team-member">
{% include team-member-image.html author=author %}
<h1 class="team-member-name"><a href="{{ author.permalink | prepend: site.baseurl }}">{{
author.first_name }} {{ author.last_name }}</a></h1>
<span class="team-member-title">{{ author.title }}</span>
{% if author.title2 %}
<span class="team-member-title">{{ author.title2 }}</span>
{% endif %}
{% include team-member-links.html author=author %}
</div>
{% endfor %}
</section>
</div>
</section>