-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathindex.html
39 lines (37 loc) · 1.09 KB
/
index.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
36
37
38
39
---
layout: default
title: People
---
<h1>People</h1>
<div id="peopleTable">
<ul>
{%- assign sorted_people = site.people | sort: 'last-name' %}
{%- for person in sorted_people %}
{%- if person.first-name %}
<li><a href="{{ person.url | relative_url }}">{{ person.first-name }} {{ person.last-name }}</a></li>
{%- endif %}
{%- endfor %}
</ul>
</div>
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "Organization",
"name": "Bioschemas Community",
"url": "http://bioschemas.org/",
"logo": "http://bioschemas.org/assets/img/square_logo2.png",
"email": "[email protected]",
"member": [
{%- for person in sorted_people %}
{%- if person.first-name %}
{
"@context": "http://schema.org/",
"@type": "Person",
"givenName": "{{ person.first-name }}",
"familyName": "{{ person.last-name }}"
{%- if forloop.last == false %} }, {% else %} } {% endif %}
{%- endif %}
{%- endfor %}
]
}
</script>