-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathposts.js
More file actions
38 lines (38 loc) · 1.01 KB
/
Copy pathposts.js
File metadata and controls
38 lines (38 loc) · 1.01 KB
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
window.blogPosts = [
{
"id": 1,
"title": "First Non-AI Post",
"subtitle": "Just a hello world post.",
"author": "notverypc",
"date": "2026-06-23",
"category": "Category Name",
"slug": "first-non-ai-post"
},
{
"id": 2,
"title": "How to Start a Blog in 2026",
"subtitle": "A simple, step-by-step guide for publishing your first post.",
"author": "Ava Morgan",
"date": "2026-05-08",
"category": "Writing",
"slug": "how-to-start-a-blog"
},
{
"id": 3,
"title": "Design Tips for Better Readability",
"subtitle": "Small improvements that make your text easier to scan.",
"author": "Noah Patel",
"date": "2026-05-06",
"category": "Design",
"slug": "design-tips-for-better-readability"
},
{
"id": 4,
"title": "Deploy a Static Blog Quickly",
"subtitle": "Fast hosting options for your first website.",
"author": "Mia Lee",
"date": "2026-05-04",
"category": "Deployment",
"slug": "deploy-a-static-blog-quickly"
}
];