forked from WeLoveSpeed/welovespeed.com
-
Notifications
You must be signed in to change notification settings - Fork 1
/
schema.html
58 lines (58 loc) · 1.66 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
53
54
55
56
57
58
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Event",
"name": "Sud Web 2018",
"description": "La conférence Web surtout Humaine",
"image": "{{ site.url }}{{ site.baseurl }}/assets/images/social/og-image-{{ lang }}.jpg",
"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",
"https://twitter.com/sudweb",
"https://vimeo.com/sudweb",
"https://www.flickr.com/people/sudweb/"
],
"contactPoint": {
"@type": "ContactPoint",
"url": "{{ site.url }}{{ page.baseurl | default:site.baseurl }}/{% t contact %}/",
"contactType" : "customer service",
"contactOption": "TollFree"
},
"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",
"availability": "http://schema.org/InStock",
"url": "{{ site.url }}{{ page.baseurl | default:site.baseurl }}/{% t billetterie %}/"
}
{% comment %}
"performer": {
"@type": "Person"
"name": "",
"sameAs": ""
}
{% endcomment %}
}
</script>