forked from WeLoveSpeed/welovespeed.com
-
Notifications
You must be signed in to change notification settings - Fork 1
/
schema.html
52 lines (52 loc) · 1.46 KB
/
schema.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
40
41
42
43
44
45
46
47
48
49
50
51
52
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Event",
"name": "Sud Web 2018",
"description": "La conférence Web surtout Humaine",
"startDate": "2018-05-25T09:00",
"endDate": "2018-05-26T18:00",
"location": {
"@type": "Place",
"address": {
"@type": "PostalAddress",
"streetAddress": "1050 Chemin Bas",
"postalCode": "30140",
"addressLocality": "Anduze",
"addressRegion": "Gars"
},
"name": "Val de l’Hort"
},
"organizer": {
"@type": "Organization",
"name": "{{ site.title }}",
"logo": "{{ site.logo }}",
"sameAs": "https://www.facebook.com/SudWeb",
"sameAs": "https://twitter.com/sudweb",
"sameAs": "https://vimeo.com/sudweb",
"sameAs": "https://www.flickr.com/people/sudweb/",
"contactPoint": {
"@type": "ContactPoint",
"url": "{{ site.url }}{{ page.baseurl | default:site.baseurl }}/{% t contact %}/"
},
"member": [{% for member in thym %}{% unless forloop.first == true %},{% endunless %}{
"@type": "Person",
"name": "{{ member.name }}",
"sameAs": "https://twitter.com/{{ member.twitter }}"
}{% endfor %}]
},
"offers": {
"@type": "Offer",
"price": "250.00",
"priceCurrency": "EUR",
"url": "{{ site.url }}{{ page.baseurl | default:site.baseurl }}/{% t billetterie %}/"
}
{% comment %}
"performer": {
"@type": "Person"
"name": "",
"sameAs": ""
}
{% endcomment %}
}
</script>