mirror of
https://github.com/medialab-prado/datamad2017.git
synced 2025-06-07 22:11:29 +02:00
Finished hackathon page, fixed some issues
This commit is contained in:
parent
aaa240eb29
commit
05b66f6e7c
61 changed files with 199 additions and 94 deletions
|
@ -38,6 +38,35 @@
|
|||
// "email" : "{{ site.organizerEmail }}",
|
||||
// "sameAs" : "{{ site.organizerLink }}"
|
||||
// },
|
||||
"subEvent" : {
|
||||
"@type" : "Event",
|
||||
"name" : "{{ site.hackathonTitle }}",
|
||||
"description": "{{ site.hackathonRows[0].details }}",
|
||||
"image" : "{{ site.socialImageSrcGooglePlus | prepend: site.baseurl | prepend: site.url }}",
|
||||
"url" : "{{ site.url | append: site.baseurl }}/hackathon/",
|
||||
"startDate" : "{{ site.hackathonStartTime }}",
|
||||
"doorTime" : "{{ site.hackathonDoorTime }}",
|
||||
"endDate" : "{{ site.hackathonEndTime }}",
|
||||
"location" : {
|
||||
"@type" : "Place",
|
||||
"name" : "{{ site.hackathonLocationName }}",
|
||||
"sameAs" : "{{ site.hackathonLocationLink }}",
|
||||
"address" : {
|
||||
"@type" : "PostalAddress",
|
||||
"streetAddress" : "{{ site.hackathonStreetAddress }}",
|
||||
"addressLocality" : "{{ site.hackathonAddressLocality }}",
|
||||
"addressRegion" : "{{ site.hackathonAddressLocalityRegion }}",
|
||||
"postalCode" : "{{ site.hackathonPostalCode }}",
|
||||
"addressCountry" : "{{ site.hackathonAddressCountry }}"
|
||||
},
|
||||
"geo" : {
|
||||
"@type" : "GeoCoordinates",
|
||||
{% assign hackathonCoordinates = site.hackathonPlaceCoordinates | split:"," %}
|
||||
"latitude" : "{{ hackathonCoordinates[0] }}",
|
||||
"longitude" : "{{ hackathonCoordinates[1] }}"
|
||||
}
|
||||
}
|
||||
},
|
||||
"offers" : [
|
||||
{% for ticketsOffer in site.ticketsOffers %}
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue