-
Notifications
You must be signed in to change notification settings - Fork 2
/
data.json
43 lines (42 loc) · 1.04 KB
/
data.json
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
40
41
42
43
---
layout: derp
---
[
{% for post in site.posts %}
{% if post.published %}
{% if forloop.last %}
{
"date_posted": "{{ post.date }}",
"title": "{{ post.title }}",
"link": "{{ post.link }}",
"archive_link": "{{ post.url }}",
"postdate": "{{ post.postdate }}",
"published": "{{ post.published }}",
"location": {
"latitude": "{{ post.location.latitude}}",
"longitude": "{{ post.location.longitude}}"
},
"institution": "{{ post.institution }}",
"organization": "{{ post.organization }}",
"position": "{{ post.position }}"
}
{% else %}
{
"date_posted": "{{ post.date }}",
"title": "{{ post.title }}",
"link": "{{ post.link }}",
"archive_link": "{{ post.url }}",
"postdate": "{{ post.postdate }}",
"published": "{{ post.published }}",
"location": {
"latitude": "{{ post.location.latitude}}",
"longitude": "{{ post.location.longitude}}"
},
"institution": "{{ post.institution }}",
"organization": "{{ post.organization }}",
"position": "{{ post.position }}"
},
{% endif %}
{% endif %}
{% endfor %}
]