Newer
Older
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
{
"root_page": {
"template": "Pijar Custom Template",
"metadata": {
"title": "Hello Pijar !",
"description": "A website for Pijar",
"image": "https://pijar.com/static/images/pijar_pic.png",
"css": [],
"js": []
},
"body": [
{
"layout": {
"display": "flex",
"padding": "20px"
},
"contents": [
{
"tag": "h1",
"text": "Pijar Story"
},
{
"tag": "p",
"text": "Hello Pijar<br />Oui oui oui.",
"class": "pijar_p_class"
},
{
"tag": "img",
"src": "/img/url.png"
}
]
}
]
},
"assets_index": {
"images": [
"/static/images/toto.jpg"
],
"sounds": [
"/static/sounds/toto.mp3"
],
"video": [
"/static/video/toto.mp4"
],
"docs": [
"/static/docs/toto.xcf"
],
"source_code": [
"/static/source_code/toto.js"
]
},
"templates": [
{
"name": "Pijar Custom template",
"layout": {
"display": "grid"
},
"fixed_contents": [
{
"tag": "nav",
"contents": [
{
"tag": "ul",
"contents": [
{
"tag": "li",
"text": "menu item 1"
},
{
"tag": "li",
"text": "menu item 2"
}
]
}
]
},
{
"tag": "footer",
"contents": []
}
]
}
]
}