-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrontity.settings.js
80 lines (78 loc) · 1.63 KB
/
frontity.settings.js
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
const settings = {
"name": "vintage-vinyl",
"state": {
"frontity": {
"url": "https://test.frontity.org",
"title": "Vintage Vinyl Collector",
"description": "Spin those discs"
}
},
"packages": [
{
"name": "mars-theme-vintage-vinyl",
"state": {
"theme": {
"menu": [
[
"Home",
"/"
],
[
"Rock",
"/record_cat/rock/"
],
[
"Punk",
"/record_cat/punk/"
],
[
"Grunge",
"/record_cat/grunge/"
],
[
"All records",
"/record_cat/"
],
[
"Catalogue",
"/catalogue"
],
[
"About Us",
"/about-us/"
]
],
"featured": {
"showOnList": true,
"showOnPost": true
}
}
}
},
{
"name": "@frontity/wp-source",
"state": {
"source": {
"api": "https://app-5efddb43c1ac181508283e93.closte.com/wp-json",
"postTypes": [
{
type: "record",
endpoint: "record",
archive: "/record_cat"
}
],
taxonomies: [
{
taxonomy: "record_cat",
endpoint: "record_cat",
postTypeEndpoint: "record"
}
]
}
}
},
"@frontity/tiny-router",
"@frontity/html2react"
]
};
export default settings;