Finished hackathon page, fixed some issues

This commit is contained in:
Oleh Zasadnyy 2014-08-29 17:57:46 +03:00
parent aaa240eb29
commit 05b66f6e7c
61 changed files with 199 additions and 94 deletions

View file

@ -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 %}
{