-
Notifications
You must be signed in to change notification settings - Fork 122
/
team-member.html
34 lines (32 loc) · 982 Bytes
/
team-member.html
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
---
layout: page
---
<aside class="usa-layout-docs-sidenav sidenav {% if page.sticky_sidenav %}usa-sticky-sidenav{% endif %}">
<ul class="usa-sidenav-list">
{% for item in site.team %}
<li>
{% if page.permalink == item.permalink %}
<a class="usa-current" href="{{ item.permalink | prepend: site.baseurl }}">{{ item.name }}</a>
{% else %}
<a href="{{ item.permalink | prepend: site.baseurl }}">{{ item.name }}</a>
{% endif %}
</li>
{% endfor %}
</ul>
</aside>
<div class="usa-width-three-fourths usa-layout-docs-main_content">
<h1>{{ page.name }}</h1>
<img src="{{ site.baseurl }}{{ page.image }}" alt="photo of {{ page.name }} ">
<p>
{{ page.job_title }}
{% if page.phone %}
<br>
phone: <a href="tel:{{ page.phone }}">{{ page.phone }}</a>
{% endif %}
{% if page.email %}
<br>
email: <a href="mailto:{{ page.email }}">{{ page.email }}</a>
{% endif %}
</p>
{{ content }}
</div>