forked from zerostaticthemes/jekyll-serif-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteam.html
47 lines (45 loc) · 1.18 KB
/
team.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
45
46
47
---
title: Team
layout: default
bodyClass: page-team-list
---
<div class="intro">
<div class="container">
<div class="row">
<div class="col-12">
<h1>Meet The Team</h1>
<p>
Our team of qualified accountants and financial consultants can help
your business at any stage of it's growth.
</p>
</div>
</div>
</div>
</div>
<div class="container pb-6">
<div class="row">
{% for team in site.team %}
<div class="col-12 col-md-6 mb-1">
<div class="team team-summary">
{% if team.image %}
<div class="team-image">
<img
alt="{{ team.title }} logo"
class="img-fluid mb-2"
src="{{site.baseurl}}{{ team.image }}"
/>
</div>
{% endif %}
<div class="team-meta">
<h2 class="team-name">{{ team.title }}</h2>
<p class="team-description">{{ team.jobtitle }}</p>
{% if team.linkedinurl %}
<a target="_blank" href="{{ team.linkedinurl }}">LinkedIn</a>
{% endif %}
</div>
<div class="team-content">{{ team.content }}</div>
</div>
</div>
{% endfor %}
</div>
</div>