-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpeople.html
More file actions
18 lines (18 loc) · 851 Bytes
/
people.html
File metadata and controls
18 lines (18 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
title: People
layout: default
permalink: /people.html
---
<ul class="index">
{% for p in site.data.people %}
<li class="index__item person">
<img class="person__img" src="{{p.pic}}" alt="Photo of {{p.name}}">
<h3 class="person__name">{{p.name}}</h3>
<ul class="list list--inline list--middot-seperated person__social-networks">{%- if p.github -%}
<li><a class=" person__social-network-link" href="{{p.github}}" target="_blank">Github</a></li>{% endif -%}{%- if p.linkedin -%}<li><a class=" person__social-network-link" href="{{p.linkedin}}" target="_blank">LinkedIn</a></li>{% endif -%}{%- if p.twitter -%}<li><a class=" person__social-network-link" href="{{p.twitter}}" target="_blank">Twitter</a></li>
{% endif -%}
</ul>
<div class="person__blurb">{{p.blurb | markdownify}}</div>
</li>
{% endfor %}
</ul>