forked from berlinphp/berlinphp.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevent.json
More file actions
27 lines (27 loc) · 725 Bytes
/
event.json
File metadata and controls
27 lines (27 loc) · 725 Bytes
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
---
layout: null
---
{% for post in site.posts limit:1 %}
{
"@context": "https://schema.org",
"@type": "Event",
"name": {{ post.title | jsonify }},
"description": {{ post.content | jsonify }},
{% if post.cancelled %}
"eventStatus": "http://schema.org/EventCancelled",
{% endif %}
"location": {
"@type": "Place",
"name": "co.up coworking",
"url": "https://co-up.de/",
"address": {
"@type": "PostalAddress",
"addressLocality": "Berlin",
"postalCode": "10999",
"streetAddress": "Adalbertstraße 8"
}
},
"startDate": "{{ post.meetupdate }}T19:00",
"url": "https://www.bephpug.de/"
}
{% endfor %}