2020-08-23 12:01:06 +02:00
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
bodyClass: page-team-list
|
|
|
|
---
|
|
|
|
|
|
|
|
<div class="intro">
|
|
|
|
<div class="container">
|
|
|
|
<div class="row justify-content-start">
|
|
|
|
<div class="col-12 col-md-7 col-lg-6 order-2 order-md-1">
|
|
|
|
{{ content }}
|
|
|
|
</div>
|
|
|
|
{% if page.intro_image %}
|
|
|
|
<div class="col-12 col-md-5 col-lg-6 order-1 order-md-2 position-relative">
|
|
|
|
<img alt={{ page.title }} class="intro-image{% if page.intro_image_absolute %} intro-image-absolute{% endif %}{% if page.intro_image_hide_on_mobile %} intro-image-hide-mobile{% endif %}" src="{{ page.intro_image | relative_url }}" />
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="container pt-6 pb-6">
|
|
|
|
<div class="row">
|
|
|
|
{% assign promoted_teams = site.team | where: "promoted", true | sort: "weight" %}
|
|
|
|
{% for team in promoted_teams %}
|
|
|
|
<div class="col-12 col-md-6 mb-2">
|
|
|
|
<div class="team team-summary team-summary-large">
|
|
|
|
{% if team.image %}
|
|
|
|
<div class="team-image">
|
|
|
|
<img alt="{{ team.title }}" class="img-fluid mb-2" src="{{ team.image | relative_url }}" />
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
<div class="team-meta">
|
|
|
|
<h2 class="team-name">{{ team.title }}</h2>
|
|
|
|
<p class="team-description">{{ team.jobtitle }}</p>
|
|
|
|
{% if team.linkedinurl %}
|
2021-01-30 20:38:57 +01:00
|
|
|
<a target="_blank" href="{{ team.linkedinurl }}">Twitter</a>
|
2020-08-23 12:01:06 +02:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
2021-01-30 20:38:57 +01:00
|
|
|
<div class="team-content">{{ team.content }}</div>
|
2020-08-23 12:01:06 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
<div class="row pt-6 pb-6">
|
2020-08-26 13:04:15 +02:00
|
|
|
{% assign teams = site.team | where: "promoted", empty | sort: "weight" %}
|
2020-08-23 12:01:06 +02:00
|
|
|
{% for team in teams %}
|
|
|
|
<div class="col-12 col-md-4 mb-3">
|
|
|
|
<div class="team team-summary">
|
|
|
|
{% if team.image %}
|
|
|
|
<div class="team-image">
|
|
|
|
<img alt="{{ team.title }}" class="img-fluid mb-2" src="{{ team.image | relative_url }}" />
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
<div class="team-meta">
|
|
|
|
<h2 class="team-name">{{ team.title }}</h2>
|
|
|
|
<p class="team-description">{{ team.jobtitle }}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2020-10-17 02:14:24 +02:00
|
|
|
</div>
|