This repository was archived by the owner on May 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
50 lines (48 loc) · 1.38 KB
/
about.html
File metadata and controls
50 lines (48 loc) · 1.38 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
---
title: About
layout: default
bodyClass: page-team-list
heading: About Your Agent
description: An authorized agent can navigate the waters of constant change in the
Medicare insurance landscape to help you find the best possible plan for your situation.
Meet your agent.
---
<div class="intro">
<div class="container">
<div class="row">
<div class="col-12">
<h1>{{ page.heading }}</h1>
<p>{{ site.page_descriptions.about | default: page.description }}</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>
{% if team.jobtitle %}
<p class="team-description">{{ team.jobtitle }}</p>
{% endif %}
{% 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>