generated from kevinlin1/just-the-class
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathstaffer.html
35 lines (35 loc) · 1.38 KB
/
staffer.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
35
<div class="staffer">
{%- if page.photo -%}
<img class="staffer-image" src="{{ site.baseurl }}{{ page.subpath }}{{ page.photo }}" alt="{{ page.name }} profile photo" width="{{ page.width }}" height="{{ page.height }}">
{%- else -%}
<img class="staffer-image" src="{{ site.baseurl }}{{ page.subpath }}default_photo.jpg" alt="{{ page.name }} profile photo" width="{{ page.width }}" height="{{ page.height }}">
{%- endif -%}
<div>
<h3 class="staffer-name" id="{{ page.name | slugify }}">
{%- if page.website -%}
<a href="{{ page.website }}">{{ page.name }}</a>
{%- else -%}
{{ page.name }}
{%- endif -%}
{%- if page.pronouns -%}
<span class="staffer-badge">{{ page.pronouns }}</span>
{%- endif -%}
{%- if page.access_email -%}
<span class="staffer-badge">{{ site.course_email }}</span>
{%- endif -%}
{%- if page.access_dsp -%}
<span class="staffer-badge">DSP</span>
{%- endif -%}
</h3>
{%- if page.email -%}
<p><a href="mailto:{{ page.email }}">{{ page.email }}</a></p>
{%- endif -%}
{%- if page.section -%}
<p class="staffer-meta">Section: {{ page.section | markdownify | strip_html }}</p>
{%- endif -%}
{%- if page.office_hours -%}
<p class="staffer-meta">Office Hours: {{ page.office_hours | markdownify | strip_html }}</p>
{%- endif -%}
{{ content }}
</div>
</div>