-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.ini
95 lines (77 loc) · 3.9 KB
/
config.ini
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
[config]
; DEFAULT OPTIONS
; ----
; The following are default theme options to include as a best practice
display_featured_item.type = "checkbox"
display_featured_item.options.label = "Display Featured Archive Items"
display_featured_item.options.description = "Check this box if you wish to show the featured items on the homepage."
display_featured_item.options.value = "1"
display_vpb.type = "checkbox"
display_vpb.options.label = "Display VPB on the homepage"
display_vpb.options.description = "Check this box if you wish to show the VPB on the homepage."
display_vpb.options.value = "1"
display_featured_exhibit.type = "checkbox"
display_featured_exhibit.options.label = "Display Featured Tours"
display_featured_exhibit.options.description = "Check this box if you wish to show the featured exhibit on the homepage."
display_featured_exhibit.options.value = "1"
; Our custom homepage "about" text
homepage_quote.type = "textarea"
homepage_quote.options.label = "Homepage Quote"
homepage_quote.options.description = "A quote for the homepage (in HTML) including the author byline"
homepage_quote.options.rows = "5"
homepage_quote.options.attribs.class = "html-input"
; Archive introduction
archive_introduction_text.type = "textarea"
archive_introduction_text.options.label = "Archive Introduction"
archive_introduction_text.description = "Text to live on the archive's introduction page."
archive_introduction_text.options.rows = "5"
archive_introduction_text.options.attribs.class = "html-input"
; Tours introduction
tours_introduction_text.type = "textarea"
tours_introduction_text.options.label = "Tours Introduction"
tours_introduction_text.description = "Text to live on the tours introduction page."
tours_introduction_text.options.rows = "5"
tours_introduction_text.options.attribs.class = "html-input"
; vpb introduction
vpb_introduction_text.type = "textarea"
vpb_introduction_text.options.label = "VPB Introduction"
vpb_introduction_text.description = "Text to live on the VPB introduction page."
vpb_introduction_text.options.rows = "5"
vpb_introduction_text.options.attribs.class = "html-input"
; MORE OPTIONS
; ----
; Below are samples of the different types of Configuration options and input types
; Remove the semi-colon before the indentifier (e.g. "; sample_text.options" -> "sample_text.options")
; Sample Checkbox
; sample_checkbox.type = "checkbox"
; sample_checkbox.options.label = "Sample Checkbox"
; sample_checkbox.options.description = "This is a sample checkbox, for both toggles and selectors."
; sample_checkbox.options.value = "1"
; Sample Text Input
; sample_text.type = "text"
; sample_text.options.label = "Sample Text"
; sample_text.options.description = "This is a sample input text field, usually for shorter lines of text."
; sample_text.options.maxlength = "60"
; Sample Text Area
; sample_textarea.type = "textarea"
; sample_textarea.options.label = "Sample Textarea"
; sample_textarea.options.description = "This is a sample textarea, for longer paragraphs of text."
; sample_textarea.options.rows = "5"
; sample_textarea.options.attribs.class = "html-input"
; Sample Select List
; sample_select.type = "select"
; sample_select.options.label = "Sample Select List"
; sample_select.options.description = "This is a sample select list."
; sample_select.options.multiOptions.option01 = "Option #1"
; sample_select.options.multiOptions.option02 = "Option #2"
; sample_select.options.multiOptions.option03 = "Option #3"
; sample_select.options.value = "option01"
; Sample File
; sample_file.type = "file"
; sample_file.options.label = "Sample File Picker"
; sample_file.options.description = "This is a sample file picker for adding and uploading images and other files."
; sample_file.options.validators.count.validator = "Count"
; sample_file.options.validators.count.options.max = "1"
[plugins]
; Exclude fields from plugins, if they wish.
exclude_fields = "display_featured_item, display_featured_collection, display_featured_exhibit"