Skip to content

Commit 8e7bdee

Browse files
committed
Merge branch 'develop' into gh-pages
2 parents f5c142d + ac4d92a commit 8e7bdee

File tree

12 files changed

+128
-56
lines changed

12 files changed

+128
-56
lines changed

_layouts/default.html

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,13 +79,19 @@
7979
"addressRegion" : "{{ site.eventAddressLocalityRegion }}",
8080
"postalCode" : "{{ site.eventPostalCode }}",
8181
"addressCountry" : "{{ site.eventAddressCountry }}"
82+
},
83+
"geo" : {
84+
"@type" : "GeoCoordinates",
85+
{% assign coordinates = site.eventPlaceCoordinates | split:"," %}
86+
"latitude" : "{{ coordinates[0] }}",
87+
"longitude" : "{{ coordinates[1] }}"
8288
}
8389
},
8490
"organizer" : {
8591
"@type" : "Organization",
8692
"name" : "{{ site.organizerName }}",
8793
"alternateName" : "{{ site.organizerAlternateName }}",
88-
"description" : "{{ site.organizerDescription }}"
94+
"description" : "{{ site.organizerDescription }}",
8995
"logo" : "{{ site.organizerLogo | prepend: site.baseurl | prepend: site.url }}",
9096
"email" : "{{ site.organizerEmail }}",
9197
"sameAs" : "{{ site.organizerLink }}"
@@ -112,7 +118,7 @@
112118
"worksFor" : {
113119
"@type" : "Organization",
114120
"name" : "{{ speaker.company }}"
115-
}
121+
},
116122
"sameAs" : "{{ speaker.social[0].link }}"
117123
}{% if forloop.index != forloop.length %},{% endif %}
118124
{% endfor %}

_layouts/index.html

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,13 +101,19 @@
101101
"addressRegion" : "{{ site.eventAddressLocalityRegion }}",
102102
"postalCode" : "{{ site.eventPostalCode }}",
103103
"addressCountry" : "{{ site.eventAddressCountry }}"
104+
},
105+
"geo" : {
106+
"@type" : "GeoCoordinates",
107+
{% assign coordinates = site.eventPlaceCoordinates | split:"," %}
108+
"latitude" : "{{ coordinates[0] }}",
109+
"longitude" : "{{ coordinates[1] }}"
104110
}
105111
},
106112
"organizer" : {
107113
"@type" : "Organization",
108114
"name" : "{{ site.organizerName }}",
109115
"alternateName" : "{{ site.organizerAlternateName }}",
110-
"description" : "{{ site.organizerDescription }}"
116+
"description" : "{{ site.organizerDescription }}",
111117
"logo" : "{{ site.organizerLogo | prepend: site.baseurl | prepend: site.url }}",
112118
"email" : "{{ site.organizerEmail }}",
113119
"sameAs" : "{{ site.organizerLink }}"
@@ -134,7 +140,7 @@
134140
"worksFor" : {
135141
"@type" : "Organization",
136142
"name" : "{{ speaker.company }}"
137-
}
143+
},
138144
"sameAs" : "{{ speaker.social[0].link }}"
139145
}{% if forloop.index != forloop.length %},{% endif %}
140146
{% endfor %}

_layouts/logistics.html

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,19 @@
6565
"addressRegion" : "{{ site.eventAddressLocalityRegion }}",
6666
"postalCode" : "{{ site.eventPostalCode }}",
6767
"addressCountry" : "{{ site.eventAddressCountry }}"
68+
},
69+
"geo" : {
70+
"@type" : "GeoCoordinates",
71+
{% assign coordinates = site.eventPlaceCoordinates | split:"," %}
72+
"latitude" : "{{ coordinates[0] }}",
73+
"longitude" : "{{ coordinates[1] }}"
6874
}
6975
},
7076
"organizer" : {
7177
"@type" : "Organization",
7278
"name" : "{{ site.organizerName }}",
7379
"alternateName" : "{{ site.organizerAlternateName }}",
74-
"description" : "{{ site.organizerDescription }}"
80+
"description" : "{{ site.organizerDescription }}",
7581
"logo" : "{{ site.organizerLogo | prepend: site.baseurl | prepend: site.url }}",
7682
"email" : "{{ site.organizerEmail }}",
7783
"sameAs" : "{{ site.organizerLink }}"
@@ -98,7 +104,7 @@
98104
"worksFor" : {
99105
"@type" : "Organization",
100106
"name" : "{{ speaker.company }}"
101-
}
107+
},
102108
"sameAs" : "{{ speaker.social[0].link }}"
103109
}{% if forloop.index != forloop.length %},{% endif %}
104110
{% endfor %}

_layouts/post.html

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,19 @@
6161
"addressRegion" : "{{ site.eventAddressLocalityRegion }}",
6262
"postalCode" : "{{ site.eventPostalCode }}",
6363
"addressCountry" : "{{ site.eventAddressCountry }}"
64+
},
65+
"geo" : {
66+
"@type" : "GeoCoordinates",
67+
{% assign coordinates = site.eventPlaceCoordinates | split:"," %}
68+
"latitude" : "{{ coordinates[0] }}",
69+
"longitude" : "{{ coordinates[1] }}"
6470
}
6571
},
6672
"organizer" : {
6773
"@type" : "Organization",
6874
"name" : "{{ site.organizerName }}",
6975
"alternateName" : "{{ site.organizerAlternateName }}",
70-
"description" : "{{ site.organizerDescription }}"
76+
"description" : "{{ site.organizerDescription }}",
7177
"logo" : "{{ site.organizerLogo | prepend: site.baseurl | prepend: site.url }}",
7278
"email" : "{{ site.organizerEmail }}",
7379
"sameAs" : "{{ site.organizerLink }}"
@@ -94,7 +100,7 @@
94100
"worksFor" : {
95101
"@type" : "Organization",
96102
"name" : "{{ speaker.company }}"
97-
}
103+
},
98104
"sameAs" : "{{ speaker.social[0].link }}"
99105
}{% if forloop.index != forloop.length %},{% endif %}
100106
{% endfor %}

_site/blog/call-for-papers/index.html

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -440,13 +440,19 @@ <h5>FAQ</h5>
440440
"addressRegion" : "Lvivska",
441441
"postalCode" : "79000",
442442
"addressCountry" : "Ukraine"
443+
},
444+
"geo" : {
445+
"@type" : "GeoCoordinates",
446+
447+
"latitude" : "49.843237",
448+
"longitude" : "24.028751"
443449
}
444450
},
445451
"organizer" : {
446452
"@type" : "Organization",
447453
"name" : "GDG Lviv",
448454
"alternateName" : "Google Developer Group Lviv",
449-
"description" : "Open and volunteer geek communities who create exciting projects and share experience about Google technology with passion."
455+
"description" : "Open and volunteer geek communities who create exciting projects and share experience about Google technology with passion.",
450456
"logo" : "http://gdg-x.github.io/zeppelin/img/seo/organizer-logo.png",
451457
"email" : "lviv@gdg.org.ua",
452458
"sameAs" : "http://lviv.gdg.org.ua/"
@@ -491,7 +497,7 @@ <h5>FAQ</h5>
491497
"worksFor" : {
492498
"@type" : "Organization",
493499
"name" : "Google Poland"
494-
}
500+
},
495501
"sameAs" : "https://plus.google.com/+DawidOstrowski/"
496502
},
497503

@@ -503,7 +509,7 @@ <h5>FAQ</h5>
503509
"worksFor" : {
504510
"@type" : "Organization",
505511
"name" : "Lemberg Solutions Limited"
506-
}
512+
},
507513
"sameAs" : "https://plus.google.com/+DmytroDanylyk"
508514
},
509515

@@ -515,7 +521,7 @@ <h5>FAQ</h5>
515521
"worksFor" : {
516522
"@type" : "Organization",
517523
"name" : "Base CRM, GDG Krakow"
518-
}
524+
},
519525
"sameAs" : "https://plus.google.com/+MateuszHerych"
520526
},
521527

@@ -527,7 +533,7 @@ <h5>FAQ</h5>
527533
"worksFor" : {
528534
"@type" : "Organization",
529535
"name" : "Stanfy, GDG Kyiv"
530-
}
536+
},
531537
"sameAs" : "https://plus.google.com/+RomanMazur/"
532538
},
533539

@@ -539,7 +545,7 @@ <h5>FAQ</h5>
539545
"worksFor" : {
540546
"@type" : "Organization",
541547
"name" : "Twinfield, GDG Kyiv"
542-
}
548+
},
543549
"sameAs" : "https://google.com/+ValentynShybanov"
544550
}
545551

_site/blog/hello-world/index.html

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -394,13 +394,19 @@ <h5>FAQ</h5>
394394
"addressRegion" : "Lvivska",
395395
"postalCode" : "79000",
396396
"addressCountry" : "Ukraine"
397+
},
398+
"geo" : {
399+
"@type" : "GeoCoordinates",
400+
401+
"latitude" : "49.843237",
402+
"longitude" : "24.028751"
397403
}
398404
},
399405
"organizer" : {
400406
"@type" : "Organization",
401407
"name" : "GDG Lviv",
402408
"alternateName" : "Google Developer Group Lviv",
403-
"description" : "Open and volunteer geek communities who create exciting projects and share experience about Google technology with passion."
409+
"description" : "Open and volunteer geek communities who create exciting projects and share experience about Google technology with passion.",
404410
"logo" : "http://gdg-x.github.io/zeppelin/img/seo/organizer-logo.png",
405411
"email" : "lviv@gdg.org.ua",
406412
"sameAs" : "http://lviv.gdg.org.ua/"
@@ -445,7 +451,7 @@ <h5>FAQ</h5>
445451
"worksFor" : {
446452
"@type" : "Organization",
447453
"name" : "Google Poland"
448-
}
454+
},
449455
"sameAs" : "https://plus.google.com/+DawidOstrowski/"
450456
},
451457

@@ -457,7 +463,7 @@ <h5>FAQ</h5>
457463
"worksFor" : {
458464
"@type" : "Organization",
459465
"name" : "Lemberg Solutions Limited"
460-
}
466+
},
461467
"sameAs" : "https://plus.google.com/+DmytroDanylyk"
462468
},
463469

@@ -469,7 +475,7 @@ <h5>FAQ</h5>
469475
"worksFor" : {
470476
"@type" : "Organization",
471477
"name" : "Base CRM, GDG Krakow"
472-
}
478+
},
473479
"sameAs" : "https://plus.google.com/+MateuszHerych"
474480
},
475481

@@ -481,7 +487,7 @@ <h5>FAQ</h5>
481487
"worksFor" : {
482488
"@type" : "Organization",
483489
"name" : "Stanfy, GDG Kyiv"
484-
}
490+
},
485491
"sameAs" : "https://plus.google.com/+RomanMazur/"
486492
},
487493

@@ -493,7 +499,7 @@ <h5>FAQ</h5>
493499
"worksFor" : {
494500
"@type" : "Organization",
495501
"name" : "Twinfield, GDG Kyiv"
496-
}
502+
},
497503
"sameAs" : "https://google.com/+ValentynShybanov"
498504
}
499505

_site/blog/index.html

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -393,13 +393,19 @@ <h5>FAQ</h5>
393393
"addressRegion" : "Lvivska",
394394
"postalCode" : "79000",
395395
"addressCountry" : "Ukraine"
396+
},
397+
"geo" : {
398+
"@type" : "GeoCoordinates",
399+
400+
"latitude" : "49.843237",
401+
"longitude" : "24.028751"
396402
}
397403
},
398404
"organizer" : {
399405
"@type" : "Organization",
400406
"name" : "GDG Lviv",
401407
"alternateName" : "Google Developer Group Lviv",
402-
"description" : "Open and volunteer geek communities who create exciting projects and share experience about Google technology with passion."
408+
"description" : "Open and volunteer geek communities who create exciting projects and share experience about Google technology with passion.",
403409
"logo" : "http://gdg-x.github.io/zeppelin/img/seo/organizer-logo.png",
404410
"email" : "lviv@gdg.org.ua",
405411
"sameAs" : "http://lviv.gdg.org.ua/"
@@ -444,7 +450,7 @@ <h5>FAQ</h5>
444450
"worksFor" : {
445451
"@type" : "Organization",
446452
"name" : "Google Poland"
447-
}
453+
},
448454
"sameAs" : "https://plus.google.com/+DawidOstrowski/"
449455
},
450456

@@ -456,7 +462,7 @@ <h5>FAQ</h5>
456462
"worksFor" : {
457463
"@type" : "Organization",
458464
"name" : "Lemberg Solutions Limited"
459-
}
465+
},
460466
"sameAs" : "https://plus.google.com/+DmytroDanylyk"
461467
},
462468

@@ -468,7 +474,7 @@ <h5>FAQ</h5>
468474
"worksFor" : {
469475
"@type" : "Organization",
470476
"name" : "Base CRM, GDG Krakow"
471-
}
477+
},
472478
"sameAs" : "https://plus.google.com/+MateuszHerych"
473479
},
474480

@@ -480,7 +486,7 @@ <h5>FAQ</h5>
480486
"worksFor" : {
481487
"@type" : "Organization",
482488
"name" : "Stanfy, GDG Kyiv"
483-
}
489+
},
484490
"sameAs" : "https://plus.google.com/+RomanMazur/"
485491
},
486492

@@ -492,7 +498,7 @@ <h5>FAQ</h5>
492498
"worksFor" : {
493499
"@type" : "Organization",
494500
"name" : "Twinfield, GDG Kyiv"
495-
}
501+
},
496502
"sameAs" : "https://google.com/+ValentynShybanov"
497503
}
498504

_site/cod/index.html

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -325,13 +325,19 @@ <h5>FAQ</h5>
325325
"addressRegion" : "Lvivska",
326326
"postalCode" : "79000",
327327
"addressCountry" : "Ukraine"
328+
},
329+
"geo" : {
330+
"@type" : "GeoCoordinates",
331+
332+
"latitude" : "49.843237",
333+
"longitude" : "24.028751"
328334
}
329335
},
330336
"organizer" : {
331337
"@type" : "Organization",
332338
"name" : "GDG Lviv",
333339
"alternateName" : "Google Developer Group Lviv",
334-
"description" : "Open and volunteer geek communities who create exciting projects and share experience about Google technology with passion."
340+
"description" : "Open and volunteer geek communities who create exciting projects and share experience about Google technology with passion.",
335341
"logo" : "http://gdg-x.github.io/zeppelin/img/seo/organizer-logo.png",
336342
"email" : "lviv@gdg.org.ua",
337343
"sameAs" : "http://lviv.gdg.org.ua/"
@@ -376,7 +382,7 @@ <h5>FAQ</h5>
376382
"worksFor" : {
377383
"@type" : "Organization",
378384
"name" : "Google Poland"
379-
}
385+
},
380386
"sameAs" : "https://plus.google.com/+DawidOstrowski/"
381387
},
382388

@@ -388,7 +394,7 @@ <h5>FAQ</h5>
388394
"worksFor" : {
389395
"@type" : "Organization",
390396
"name" : "Lemberg Solutions Limited"
391-
}
397+
},
392398
"sameAs" : "https://plus.google.com/+DmytroDanylyk"
393399
},
394400

@@ -400,7 +406,7 @@ <h5>FAQ</h5>
400406
"worksFor" : {
401407
"@type" : "Organization",
402408
"name" : "Base CRM, GDG Krakow"
403-
}
409+
},
404410
"sameAs" : "https://plus.google.com/+MateuszHerych"
405411
},
406412

@@ -412,7 +418,7 @@ <h5>FAQ</h5>
412418
"worksFor" : {
413419
"@type" : "Organization",
414420
"name" : "Stanfy, GDG Kyiv"
415-
}
421+
},
416422
"sameAs" : "https://plus.google.com/+RomanMazur/"
417423
},
418424

@@ -424,7 +430,7 @@ <h5>FAQ</h5>
424430
"worksFor" : {
425431
"@type" : "Organization",
426432
"name" : "Twinfield, GDG Kyiv"
427-
}
433+
},
428434
"sameAs" : "https://google.com/+ValentynShybanov"
429435
}
430436

0 commit comments

Comments
 (0)