1
0
Fork 0
hswro_org/_layouts/teams.html

63 lines
2.6 KiB
HTML
Raw Normal View History

2020-08-23 10:01:06 +00:00
---
layout: default
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">
<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 %}
<a target="_blank" href="{{ team.linkedinurl }}" rel="noreferrer">LinkedIn</a>
2020-08-23 10:01:06 +00:00
{% endif %}
</div>
<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">
<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>