-
Notifications
You must be signed in to change notification settings - Fork 39
/
settings.yml
166 lines (160 loc) · 3.56 KB
/
settings.yml
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
heading:
default: "This is a header"
max: 25
blurb:
default: "Ius vitae ornatus at, ei mea sumo quot dicant. Ei tale democritum eos, in mea timeam accumsan forensibus. Ei his aperiam suavitate. Et debitis convenire sea, viris dictas latine."
max: 180
sections:
type: objects
default: []
schema:
name: link section
identifier: text
properties:
text:
type: string
required: true
validations:
min_length: 1
max_length: 1000
title:
type: string
validations:
min_length: 1
max_length: 1000
links:
type: objects
schema:
name: link
identifier: text
properties:
text:
type: string
required: true
validations:
min_length: 1
max_length: 1000
url:
type: string
required: true
validations:
min_length: 1
max_length: 2048
target:
type: enum
default: _blank
choices:
- _blank
- _self
- _parent
- _top
title:
type: string
validations:
min_length: 1
max_length: 1000
referrer_policy:
type: enum
default: no-referrer-when-downgrade
choices:
- no-referrer
- no-referrer-when-downgrade
- origin
- origin-when-cross-origin
- unsafe-url
small_links:
type: objects
default:
- text: Privacy
url: "#"
target: _blank
- text: Terms of service
url: "#"
target: _blank
- text: About
url: "#"
target: _blank
schema:
name: small link
identifier: text
properties:
text:
type: string
required: true
validations:
min: 1
max: 1000
url:
type: string
required: true
validations:
min: 1
max: 2048
url: true
target:
type: enum
default: _blank
choices:
- _blank
- _self
- _parent
- _top
social_links:
type: objects
default:
- text: Facebook
title: Join us on Facebook
url: "#"
target: _blank
icon_name: fab-facebook
- text: Twitter
title: Show some love on Twitter
url: "#"
target: _blank
icon_name: fab-twitter
- text: Youtube
title: Check out our latest videos on Youtube
url: "#"
target: _blank
icon_name: fab-youtube
schema:
name: social link
identifier: text
properties:
text:
type: string
required: true
validations:
min_length: 1
max_length: 1000
title:
type: string
validations:
min_length: 1
max_length: 1000
url:
type: string
required: true
validations:
min_length: 1
max_length: 2048
url: true
target:
type: string
default: _blank
choices:
- _blank
- _self
- _parent
- _top
icon_name:
type: string
validations:
min_length: 1
max_length: 200
show_footer_on_login_required_page:
default: true
svg_icons:
default: "fab-facebook|fab-twitter|fab-youtube"
type: "list"
list_type: "compact"