2020-08-23 10:01:06 +00:00
|
|
|
---
|
|
|
|
layout: default
|
2021-07-12 03:06:45 +00:00
|
|
|
bodyClass: "page-teams"
|
2020-08-23 10:01:06 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
<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">
|
2021-03-09 02:04:14 +00:00
|
|
|
<div class="team team-summary team-summary-large">
|
2020-08-23 10:01:06 +00:00
|
|
|
{% if team.image %}
|
|
|
|
<div class="team-image">
|
2021-08-09 11:02:59 +00:00
|
|
|
<img width="90" height="90" alt="{{ team.title }}" class="img-fluid mb-2" src="{{ team.image | relative_url }}" />
|
2020-08-23 10:01:06 +00:00
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
<div class="team-meta">
|
2021-03-09 02:41:59 +00:00
|
|
|
<h2 class="team-name"><a href="{{ team.url | relative_url }}">{{ team.title }}</a></h2>
|
2020-08-23 10:01:06 +00:00
|
|
|
<p class="team-description">{{ team.jobtitle }}</p>
|
|
|
|
{% if team.linkedinurl %}
|
2021-08-06 15:49:36 +00:00
|
|
|
<a target="_blank" href="{{ team.linkedinurl }}" rel="noreferrer">LinkedIn</a>
|
2020-08-23 10:01:06 +00:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
2023-06-22 20:23:36 +00:00
|
|
|
<div class="team-content">{{ team.excerpt | truncate: 120 }}</div>
|
2021-03-09 02:04:14 +00:00
|
|
|
</div>
|
2020-08-23 10:01:06 +00:00
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
<div class="row pt-6 pb-6">
|
2020-08-26 11:04:15 +00:00
|
|
|
{% assign teams = site.team | where: "promoted", empty | sort: "weight" %}
|
2020-08-23 10:01:06 +00:00
|
|
|
{% for team in teams %}
|
|
|
|
<div class="col-12 col-md-4 mb-3">
|
2021-03-09 02:04:14 +00:00
|
|
|
<div class="team team-summary">
|
2020-08-23 10:01:06 +00:00
|
|
|
{% if team.image %}
|
|
|
|
<div class="team-image">
|
2021-08-09 11:02:59 +00:00
|
|
|
<img width="60" height="60" alt="{{ team.title }}" class="img-fluid mb-2" src="{{ team.image | relative_url }}" />
|
2020-08-23 10:01:06 +00:00
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
<div class="team-meta">
|
2021-03-09 02:41:59 +00:00
|
|
|
<h2 class="team-name"><a href="{{ team.url | relative_url }}">{{ team.title }}</a></h2>
|
2020-08-23 10:01:06 +00:00
|
|
|
<p class="team-description">{{ team.jobtitle }}</p>
|
|
|
|
</div>
|
2021-03-09 02:04:14 +00:00
|
|
|
</div>
|
2020-08-23 10:01:06 +00:00
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2020-10-17 00:14:24 +00:00
|
|
|
</div>
|