-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam.html
More file actions
61 lines (59 loc) · 2.92 KB
/
team.html
File metadata and controls
61 lines (59 loc) · 2.92 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
---
layout: default
title: "Team"
weight: 10
spotlight:
imgDir: /img/spotlight/team
imgAlt: "Triple D : Design, Develop, Deploy"
logoAnimation: false
qotd:
enabled: true
---
<section id="intro" class="py-4 py-md-4 bg-white text-gray">
<div class="container">
<div class="row">
<div class="col-12 col-md-10 col-lg-6 offset-0 offset-md-1 offset-lg-3 px-md-4 text-center">
<p>{{ '**Triple D** is a Belgian software development company founded and run entirely by seasoned software engineers. We’re intentionally small
and independent, with a team of highly motivated and experienced individuals. Together, we bring a wide range of skills to the table,
essential for successful software delivery.'| markdownify}} </p>
<p>{{'As a team, we make a point of taking a day off each month to sharpen our skills, improve teamwork, and share lessons learned. Personally,
we’re always learning and evolving, staying up-to-date with the latest trends and technologies.' | markdownify }}</p>
<p>{{'Because practice creates mastery.' | markdownify }}</p>
<hr class="slab center w-25">
</div>
</div>
<div class="row">
<div class="col-12 col-md-10 col-lg-6 offset-0 offset-md-1 offset-lg-3 px-md-4 py-md-1 text-center">
<p>{{ 'We also have a wide network of experienced freelance software engineers who we have worked with closely over the years, who we trust and who of course hold the same
high standards as we do.'| markdownify}} </p>
<hr class="slab center w-25">
</div>
</div>
</div>
</section>
<section id="team" class="pt-6 pt-md-2 pb-1 pb-md-4 text-gray">
<div class="container">
<div class="team-cards-container">
<div class="text-center mb-5">
<h3 class="h4 text-primary font-family-bold">Our Team</h3>
<p class="font-size-4">Meet the people behind Triple D</p>
</div>
<div class="team-cards-grid">
{% for member in site.data.team %}
<div class="team-card">
<div class="team-card-photo-container">
<img src="{{ member.photo }}" alt="{{ member.name }}" class="team-card-photo">
</div>
<div class="team-card-content">
<div class="team-card-name">{{ member.name }}</div>
<div class="team-card-description">{{ member.description }}</div>
<div class="team-card-contact">
<a href="{{ member.contactLink }}" target="_blank" class="btn btn-primary">Contact me</a>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</section>