Skip to content

Commit 0cc13a5

Browse files
committed
Update Structured for posts
1 parent bec04f1 commit 0cc13a5

File tree

1 file changed

+67
-20
lines changed

1 file changed

+67
-20
lines changed

_includes/post_seo.html

Lines changed: 67 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,84 @@
11
<script type="application/ld+json">
22
{
3-
"@context": "http://schema.org",
4-
"@type": "BlogPosting",
3+
"@context": "https://schema.org",
4+
"@type": "Article",
55
"headline": "{{ page.title }}",
6-
"image": [
7-
"{{site.url}}/assets/images/blog/posts/{{page.category}}/{{page.background}}.webp"
8-
],
6+
"description": "{{ page.description }}",
7+
"datePublished": "{{ page.date | date: '%Y-%m-%d' }}",
8+
"dateModified": "{{ page.date-modified | date: '%Y-%m-%d' }}",
99
"author": {
1010
"@type": "Person",
1111
"name": "{{ page.author }}",
1212
"url": "{{ page.author-url }}"
1313
},
1414
"publisher": {
15-
"@type": "LocalBusiness",
15+
"@type": "Organization",
1616
"name": "Active Bridge",
17+
"url": "https://activebridge.org",
1718
"logo": {
1819
"@type": "ImageObject",
19-
"url": "{{ '/assets/images/active-bridge-logo.webp' | prepend: site.baseurl | prepend: site.url }}"
20+
"url": "https://imgur.com/SUEWchJ",
21+
"width": 250,
22+
"height": 50
23+
}
24+
},
25+
"mainEntityOfPage": {
26+
"@type": "WebPage",
27+
"@id": "{{ page.url | prepend: site.baseurl | prepend: site.url }}"
28+
},
29+
"image": {
30+
"@type": "ImageObject",
31+
"url": "{{site.url}}/assets/images/blog/posts/{{page.category}}/{{page.background}}.webp",
32+
"width": 1200,
33+
"height": 630
34+
}
35+
}
36+
</script>
37+
<script type="application/ld+json">
38+
{
39+
"@context": "https://schema.org",
40+
"@type": "BreadcrumbList",
41+
"itemListElement": [
42+
{
43+
"@type": "ListItem",
44+
"position": 1,
45+
"name": "Home",
46+
"item": "https://activebridge.org/"
2047
},
21-
"address": {
22-
"@type": "PostalAddress",
23-
"addressCountry": "US",
24-
"addressLocality": "Phoenix",
25-
"addressRegion": "AZ",
26-
"postalCode": "85016",
27-
"streetAddress": "3506 North 24th Street"
48+
{
49+
"@type": "ListItem",
50+
"position": 2,
51+
"name": "Blog",
52+
"item": "https://activebridge.org/blog"
2853
},
29-
"telephone": "+18888053503"
54+
{
55+
"@type": "ListItem",
56+
"position": 3,
57+
"name": "From Discovery to Launch",
58+
"item": "{{ page.url | prepend: site.baseurl | prepend: site.url }}"
59+
}
60+
]
61+
}
62+
</script>
63+
<script type="application/ld+json">
64+
{
65+
"@context": "https://schema.org",
66+
"@type": "Organization",
67+
"name": "Active Bridge",
68+
"url": "https://activebridge.org",
69+
"logo": "https://imgur.com/SUEWchJ",
70+
"contactPoint": {
71+
"@type": "ContactPoint",
72+
"contactType": "customer service",
73+
"telephone": "+18888053503",
74+
"email": "[email protected]",
75+
"availableLanguage": ["English", "Ukrainian"]
3076
},
31-
"datePublished": "{{ page.date | date: '%Y-%m-%d' }}",
32-
"dateModified": "{{ page.date-modified | date: '%Y-%m-%d' }}",
33-
"description": "{{ page.description }}",
34-
"articleBody": "{{ page.article-body }}",
35-
"url": "{{ page.url | prepend: site.baseurl | prepend: site.url }}"
77+
"sameAs": [
78+
"https://www.linkedin.com/company/active-bridge/",
79+
"https://github.com/activebridge",
80+
"https://www.facebook.com/ActiveBridgeTeam",
81+
"https://twitter.com/activebridge"
82+
]
3683
}
3784
</script>

0 commit comments

Comments
 (0)