-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.values
executable file
·37 lines (37 loc) · 1.19 KB
/
template.values
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
{
/*
* template.values - define here the JS/CSS files for your template
* This is just plain JSON (with the support of comments).
*/
// CSS section
"css": {
"default": "css/default.css",
"faq": "css/faq.css"
},
// JS section
"js": {
"default": [ "js/default.js", "js/protheme.js", {
"lang": [ "LOADING" ],
"prettyPrintCallbackName": "pt_onPrettyPrint"
} ],
"home": [ "js/home.js", {
"lang": [ "HIDDEN_POSTS", "EXPAND" ],
"outputVersion": true // you should probably not change this
} ],
"preferences": "js/preferences.js",
"profile": "js/profile.js",
"project": "js/project.js",
"pm": "js/pm.js",
"userslist": "js/userslist.js",
"projectslist": "js/projectslist.js",
"bookmarks": "js/bookmarks.js",
"reset": "js/reset.js",
"search": "js/search.js",
"share": "js/share.js"
},
// LANGS section - accepts only "default": "path/%lang%/path/to/file.json"
// where %lang% will be replaced with each available language.
"langs": {
"default": "langs/%lang%/json/default.json"
}
}