Echo Writes Code

metadata.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
{
	"author": "Somebody Cool",
	"link": "/",
	"name": "Somebody's Website",
	"menu": [
		{
			"link": "/",
			"name": "Home"
		},
		{
			"link": "/list/sample-list",
			"name": "Some Posts"
		},
		{
			"link": "/page/about",
			"name": "About"
		},
		{
			"link": "/page/cv",
			"name": "CV"
		}
	],
	"lists": [
		{
			"slug": "sample-list",
			"name": "Sample List",
			"syndication_id": "tag:example.com,1970-01-01:/list/sample-list"
		}
	],
	"pages": [
		{
			"slug": "_index",
			"name": "Home"
		},
		{
			"slug": "about",
			"name": "About"
		},
		{
			"slug": "cv",
			"name": "CV"
		}
	],
	"posts": [
		{
			"list": "sample-list",
			"slug": "sample-post",
			"name": "Sample Post",
			"summary": "A quick little sample post",
			"published": "1970-01-01T00:00:00Z",
			"updated": "1970-01-01T00:00:00Z",
			"syndication_id": "tag:example.com,1970-01-01:/post/sample-post"
		}
	]
}