-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
60 lines (60 loc) · 1.19 KB
/
config.json
File metadata and controls
60 lines (60 loc) · 1.19 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
{
"home": {
"name": "Home",
"html": "html/pages/home.html",
"css": [
"css/components/header.css",
"css/components/sidebar.css",
"css/components/text_editor.css",
"css/pages/home.css"
],
"js": [
"js/components/text_editor.js",
"js/components/sidebar.js",
"js/pages/home.js"
]
},
"sign_in": {
"name": "Sign In",
"html": "html/pages/sign_in.html",
"css": [
"css/components/header.css",
"css/pages/home.css"
],
"js": [
"js/pages/sign_in.js"
]
},
"register": {
"name": "Register",
"html": "html/pages/register.html",
"css": [
"css/components/header.css"
],
"js": [
"js/pages/register.js"
]
},
"reset_password": {
"name": "Reset Password",
"html": "html/pages/reset_password.html",
"css": [
"css/components/header.css"
],
"js": [
"js/pages/reset_password.js"
]
},
"view_all": {
"name": "View All Posts",
"html": "html/pages/view_all.html",
"css": [
"css/components/header.css",
"css/components/sidebar.css"
],
"js": [
"js/components/sidebar.js",
"js/pages/view_all.js"
]
}
}