-
Notifications
You must be signed in to change notification settings - Fork 12
/
people.html
35 lines (33 loc) · 1.32 KB
/
people.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
---
layout: post
title: People
toc: true
---
Listed below are the pages that people have contributed to the LightForm wiki.
{% assign people_sorted = site.data.people | sort: "name" %}
{% for person in people_sorted %}
{%- capture author_pages -%}{%- include get_author_pages.html author_name=person.name -%}{%- endcapture -%}
{%- if author_pages != '' -%}
<h3 id="{{ person.handle | slugify }}">{{person.name}}</h3>
<div class="person-container">
<table class="smaller vertical-header left-aligned-header person-info">
<tr>
<th>Profile</th>
<td>
{%- assign person_url = person.url | strip -%}
{%- if person_url != '' -%}<a href="{{ person.url }}">Link</a>
{%- else -%}-{%- endif -%}
</td>
</tr>
<tr>
<th>Posts</th>
<td>{% include get_author_pages.html author_name=person.name %}</td>
</tr>
<!-- <tr>
<th>Slack</th>
<td><a href="https://lightform-group.slack.com/team/{{ person.slack_id }}">Link</a></td>
</tr> -->
</table>
</div>
{%- endif -%}
{% endfor %}