-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkibble.json
More file actions
80 lines (80 loc) · 2.24 KB
/
kibble.json
File metadata and controls
80 lines (80 loc) · 2.24 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
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
{
"name": "kibble-template-tvod",
"version": "0.0.85",
"siteUrl": "https://staging-store-kibble.shift72.com",
"builderVersion": "0.15.5",
"defaultLanguage": "en",
"languages": {
"en": "en_NZ"
},
"siteRootPath": "site",
"liveReload": {
"ignoredPaths": [
"styles"
]
},
"proxy": [
"/subtitles/"
],
"routes": [
{
"name": "filmItem",
"urlPath": "/film/:slug/",
"templatePath": "templates/film/item.jet",
"partialUrlPath": "/partials/film/:filmID.html",
"partialTemplatePath": "templates/film/partial.jet",
"datasource": "Film",
"pageSize": 0
},
{
"name": "filmPlayItem",
"urlPath": "/film/:slug/play/",
"templatePath": "templates/film/play.jet",
"datasource": "Film",
"pageSize": 0
},
{
"name": "tvItem",
"urlPath": "/tv/:slug/:seasonNumber/",
"templatePath": "templates/tv/detail.jet",
"partialUrlPath": "/partials/tv/:showID/season/:seasonNumber.html",
"partialTemplatePath": "templates/tv/partial.jet",
"datasource": "TVSeason",
"pageSize": 0
},
{
"name": "episode",
"partialUrlPath": "/partials/tv/:showID/season/:seasonNumber/episode/:episodeNumber.html",
"partialTemplatePath": "templates/tv/episode-partial.jet",
"datasource": "TVEpisode",
"pageSize": 0
},
{
"name": "pageItem",
"urlPath": "/page/:slug/",
"templatePath": "templates/page/:type.jet",
"partialUrlPath": "/partials/page/:pageID.html",
"partialTemplatePath": "templates/page/partial.jet",
"datasource": "Page",
"pageSize": 0
},
{
"name": "collectionItem",
"urlPath": "/collection/:slug/",
"templatePath": "templates/collection/item.jet",
"partialUrlPath": "/partials/collection/:collectionID.html",
"partialTemplatePath": "templates/collection/partial.jet",
"datasource": "Collection",
"pageSize": 0
},
{
"name": "bundleItem",
"urlPath": "/bundle/:slug/",
"templatePath": "templates/bundle/detail.jet",
"partialUrlPath": "/partials/bundle/:bundleID.html",
"partialTemplatePath": "templates/bundle/partial.jet",
"datasource": "Bundle",
"pageSize": 0
}
]
}