forked from swift-berlin/swift-berlin.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meetups.json
32 lines (32 loc) · 1022 Bytes
/
meetups.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
---
layout: null
---
[
{% for post in site.posts %}
{
"title": "{{ post.title | xml_escape }}",
"date": "{{ post.date | date_to_rfc822 }}",
"location": {
"name": "{{ post.location.name | xml_escape }}",
"url": "{{ post.location.url }}",
"about": "{{ post.location.about | xml_escape }}",
"address": [
{% for line in post.location.address %}
"{{line | xml_escape}}"{% unless forloop.last %},{% endunless %}
{% endfor %}
]
},
"speakers": [
{% for speaker in post.speakers %}
{
"name": "{{ speaker.name | xml_escape }}",
"about": "{{ speaker.about | xml_escape }}",
"image": "http://swift.berlin/img/speakers/{{ speaker.image | xml_escape }}.jpg",
"abstract": "{{ speaker.abstract | xml_escape }}",
"title": "{{ speaker.title | xml_escape }}"
}{% unless forloop.last %},{% endunless %}
{% endfor %}
]
}{% unless forloop.last %},{% endunless %}
{% endfor %}
]