Skip to content

Commit ac4d92a

Browse files
committed
Updated schema ld+json
1 parent f393507 commit ac4d92a

File tree

13 files changed

+256
-184
lines changed

13 files changed

+256
-184
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: 26 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,23 @@
99
<meta name="author" content="Oleh Zasadnyy, GDG Lviv">
1010
<meta name="description" content="GDG DevFest is a set of events all around the world">
1111
<meta name="keywords" content="event, gdg, devfest, google, programming, android, chrome, developers, lviv">
12-
<link rel="canonical" href="http://gdg-ukraine.github.io">
12+
<link rel="canonical" href="http://gdg-x.github.io">
1313
<!-- Social: Google+ / Schema.org -->
1414
<meta itemprop="name" content="Call for Papers">
1515
<meta itemprop="description" content="GDG DevFest is a set of events all around the world">
16-
<meta itemprop="image" content="http://gdg-ukraine.github.io/zeppelin/img/seo/sharing-google-plus.png">
16+
<meta itemprop="image" content="http://gdg-x.github.io/zeppelin/img/seo/sharing-google-plus.png">
1717
<!-- Social: Twitter -->
1818
<meta name="twitter:card" content="summary">
1919
<meta name="twitter:site" content="@DevFest">
2020
<meta name="twitter:title" content="Call for Papers">
2121
<meta name="twitter:description" content="GDG DevFest is a set of events all around the world">
22-
<meta name="twitter:image:src" content="http://gdg-ukraine.github.io/zeppelin/img/seo/sharing-twitter.png">
22+
<meta name="twitter:image:src" content="http://gdg-x.github.io/zeppelin/img/seo/sharing-twitter.png">
2323
<!-- Social: Facebook / Open Graph -->
2424
<meta property="og:title" content="Call for Papers" />
2525
<meta property="og:site_name" content="GDG DevFest Season 2014" />
2626
<meta property="og:type" content="website" />
27-
<meta property="og:url" content="http://gdg-ukraine.github.io" />
28-
<meta property="og:image" content="http://gdg-ukraine.github.io/zeppelin/img/seo/sharing-facebook.png" />
27+
<meta property="og:url" content="http://gdg-x.github.io" />
28+
<meta property="og:image" content="http://gdg-x.github.io/zeppelin/img/seo/sharing-facebook.png" />
2929
<meta property="og:description" content="GDG DevFest is a set of events all around the world" />
3030

3131

@@ -298,7 +298,7 @@ <h4 id="any-questions">Any questions?</h4>
298298
<footer id="footer" class="footer">
299299
<div class="row">
300300
<div class="pull-left col-md-6 col-xs-6">
301-
<div class="g-plusone" data-size="medium" data-annotation="inline" data-width="300" data-href="http://gdg-ukraine.github.io"></div>
301+
<div class="g-plusone" data-size="medium" data-annotation="inline" data-width="300" data-href="http://gdg-x.github.io"></div>
302302
</div>
303303
<div class="logo logo-footer logo-gray pull-right"></div>
304304
</div>
@@ -424,8 +424,8 @@ <h5>FAQ</h5>
424424
"@type" : "Event",
425425
"name" : "GDG DevFest Season 2014",
426426
"description": "GDG DevFest is a set of events all around the world",
427-
"image" : "http://gdg-ukraine.github.io/zeppelin/img/seo/sharing-google-plus.png",
428-
"url" : "http://gdg-ukraine.github.io",
427+
"image" : "http://gdg-x.github.io/zeppelin/img/seo/sharing-google-plus.png",
428+
"url" : "http://gdg-x.github.io",
429429
"startDate" : "2014-10-24T10:00",
430430
"doorTime" : "09:00",
431431
"endDate" : "2014-10-24T20:00",
@@ -440,14 +440,20 @@ <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."
450-
"logo" : "http://gdg-ukraine.github.io/zeppelin/img/seo/organizer-logo.png",
455+
"description" : "Open and volunteer geek communities who create exciting projects and share experience about Google technology with passion.",
456+
"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/"
453459
},
@@ -486,60 +492,60 @@ <h5>FAQ</h5>
486492
{
487493
"@type" : "Person",
488494
"name" : "Dawid Ostrowski",
489-
"image" : "http://gdg-ukraine.github.io/zeppelin/img/speakers/DawidOstrowski.jpg",
495+
"image" : "http://gdg-x.github.io/zeppelin/img/speakers/DawidOstrowski.jpg",
490496
"jobTitle" : "Developer Relations Program Manager",
491497
"worksFor" : {
492498
"@type" : "Organization",
493499
"name" : "Google Poland"
494-
}
500+
},
495501
"sameAs" : "https://plus.google.com/+DawidOstrowski/"
496502
},
497503

498504
{
499505
"@type" : "Person",
500506
"name" : "Dmytro Danylyk",
501-
"image" : "http://gdg-ukraine.github.io/zeppelin/img/speakers/DmytroDanylyk.jpg",
507+
"image" : "http://gdg-x.github.io/zeppelin/img/speakers/DmytroDanylyk.jpg",
502508
"jobTitle" : "Android Developer",
503509
"worksFor" : {
504510
"@type" : "Organization",
505511
"name" : "Lemberg Solutions Limited"
506-
}
512+
},
507513
"sameAs" : "https://plus.google.com/+DmytroDanylyk"
508514
},
509515

510516
{
511517
"@type" : "Person",
512518
"name" : "Mateusz Herych",
513-
"image" : "http://gdg-ukraine.github.io/zeppelin/img/speakers/MateuszHerych.jpg",
519+
"image" : "http://gdg-x.github.io/zeppelin/img/speakers/MateuszHerych.jpg",
514520
"jobTitle" : "Software Engineer",
515521
"worksFor" : {
516522
"@type" : "Organization",
517523
"name" : "Base CRM, GDG Krakow"
518-
}
524+
},
519525
"sameAs" : "https://plus.google.com/+MateuszHerych"
520526
},
521527

522528
{
523529
"@type" : "Person",
524530
"name" : "Roman Mazur",
525-
"image" : "http://gdg-ukraine.github.io/zeppelin/img/speakers/RomanMazur.jpg",
531+
"image" : "http://gdg-x.github.io/zeppelin/img/speakers/RomanMazur.jpg",
526532
"jobTitle" : "Head of Android/Java Unit",
527533
"worksFor" : {
528534
"@type" : "Organization",
529535
"name" : "Stanfy, GDG Kyiv"
530-
}
536+
},
531537
"sameAs" : "https://plus.google.com/+RomanMazur/"
532538
},
533539

534540
{
535541
"@type" : "Person",
536542
"name" : "Valentyn Shybanov",
537-
"image" : "http://gdg-ukraine.github.io/zeppelin/img/speakers/ValentynShybanov.jpg",
543+
"image" : "http://gdg-x.github.io/zeppelin/img/speakers/ValentynShybanov.jpg",
538544
"jobTitle" : "Software engineer/country manager",
539545
"worksFor" : {
540546
"@type" : "Organization",
541547
"name" : "Twinfield, GDG Kyiv"
542-
}
548+
},
543549
"sameAs" : "https://google.com/+ValentynShybanov"
544550
}
545551

0 commit comments

Comments
 (0)