-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.json
142 lines (142 loc) · 4.08 KB
/
blog.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"meta": {
"title": "[Blog Post Title] | DragDropDo",
"description": "[Short description of the blog post]",
"openGraph": {
"type": "article",
"url": "https://www.dragdropdo.com/blog/[slug]",
"title": "[Blog Post Title] | DragDropDo",
"description": "[Short description of the blog post]",
"images": [
{
"url": "https://www.dragdropdo.com/images/[slug]-og.png",
"width": 800,
"height": 600,
"alt": "[Blog Post Title]"
}
]
},
"twitter": {
"card": "summary_large_image",
"url": "https://www.dragdropdo.com/blog/[slug]",
"title": "[Blog Post Title] | DragDropDo",
"description": "[Short description of the blog post]",
"images": [
{
"url": "https://www.dragdropdo.com/images/[slug]-twitter.png",
"alt": "[Blog Post Title]"
}
]
},
"robots": {
"index": true,
"follow": true
},
"keywords": [
"[Primary keyword related to the post]",
"[Additional keywords]"
],
"authors": [
{
"name": "[Author Name]",
"url": "https://dragdropdo.com/about"
}
],
"viewport": "width=device-width, initial-scale=1.0",
"jsonLD": {
"@context": "https://schema.org",
"@graph": [
{
"@type": "WebSite",
"@id": "https://dragdropdo.com/#website",
"url": "https://dragdropdo.com/",
"name": "DragDropDo",
"description": "Compress and resize PDFs and images easily",
"publisher": { "@id": "https://dragdropdo.com/#organization" }
},
{
"@type": "WebPage",
"@id": "https://dragdropdo.com/blog/[slug]#webpage",
"url": "https://dragdropdo.com/blog/[slug]",
"name": "[Blog Post Title] - DragDropDo",
"isPartOf": { "@id": "https://dragdropdo.com/#website" },
"description": "[Short description of the blog post]",
"breadcrumb": {
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://dragdropdo.com/"
},
{
"@type": "ListItem",
"position": 2,
"name": "Blog",
"item": "https://dragdropdo.com/blog"
},
{
"@type": "ListItem",
"position": 3,
"name": "[Blog Post Title]",
"item": "https://dragdropdo.com/blog/[slug]"
}
]
},
"datePublished": "[YYYY-MM-DD]",
"dateModified": "[YYYY-MM-DD]",
"author": {
"@type": "Person",
"name": "[Author Name]"
},
"mainEntityOfPage": "https://dragdropdo.com/blog/[slug]"
},
{
"@type": "BlogPosting",
"headline": "[Blog Post Title]",
"image": ["https://dragdropdo.com/images/[slug]-og.png"],
"author": {
"@type": "Person",
"name": "[Author Name]",
"url": "https://dragdropdo.com/about"
},
"publisher": {
"@type": "Organization",
"name": "DragDropDo Inc.",
"logo": {
"@type": "ImageObject",
"url": "https://dragdropdo.com/logo.png"
}
},
"datePublished": "[YYYY-MM-DD]",
"dateModified": "[YYYY-MM-DD]",
"description": "[Short description of the blog post]",
"articleBody": "[Extract or summary of the blog content, ideally 1-2 sentences]",
"interactionStatistic": [
{
"@type": "InteractionCounter",
"interactionType": "https://schema.org/LikeAction",
"userInteractionCount": "200"
}
]
}
]
}
},
"data": {
"title": "[Blog Post Title]",
"description": "[Short description of the blog post]",
"slug": "[slug]",
"imageURL": "blog.webp",
"publishedAt": "[YYYY-MM-DD]",
"tags": ["[tag1]", "[tag2]"],
"readingTime": "[reading time in minutes]",
"wordCount": "[word count]",
"body": "[Blog Markdown Content]",
"author": {
"name" "[Author Name]",
"imageURL": "[Author ImageURL]"
}
}
}