-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrontity.settings.js
59 lines (55 loc) · 1.17 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
const settings = {
"name": "FRENCH-SEMESTER",
"state": {
"frontity": {
"url": "https://fr-semester.eu",
"title": "FRENCH SEMESTER",
"description": "1st January – 30 June 2022"
}
},
"packages": [
{
"name": "semester",
"state": {
"theme": {
"month_tag":process.env.INDEX_SEMESTER,
"menu": [
[
"Welcome",
"/"
],
[
"REGIONS of the month",
"/regionofthemonth"
],
[
"EVENTS",
"/events/20220"+(parseInt(process.env.INDEX_SEMESTER)+1)
],
[
"FACTS",
"/facts/all"
]
],
"featured": {
"showOnList": false,
"showOnPost": true
}
}
}},
{
"name": "@frontity/wp-source",
"state": {
"source": {
"api": "https://fr-semester.blog/wp-json",
"params": {
"per_page": 99,
},
}
}
},
"@frontity/tiny-router",
"@frontity/html2react"
]
};
export default settings;