forked from braziljs/conf-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdocpad.js
241 lines (204 loc) · 4.86 KB
/
docpad.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
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
/**
* @Author: Henrique Liberato <hliberato>
* @Date: 02-02-2018
* @Last modified by: hliberato
* @Last modified time: 16-03-2018
*/
module.exports = {
prompts: false,
// These are variables will be accessible via our templates
templateData: {
// Conference info
conf: {
name: "5º encontro Python Vale",
logo: "themes/yellow-swan/img/logo.png",
description: "Grupo de usuários Python do vale!",
date: "21 de setembro de 2018",
// If your event is free, just comment this line
// price: "1 quilo de feijão",
venue: "GYPZ Lab - DMCard",
address: "Av. Cassiano Ricardo, 521, 1º Andar",
city: "São José dos Campos",
state: "SP"
},
// The Call To Action button at the header,
// If you don't want this, just remove the callToAction property.
callToAction: {
text: "Inscreva-se",
link: "https://www.sympla.com.br/4-python-vale__253423"
},
// "Fork me on GitHub", if you don't want this, just remove the forkButton property
forkButton: {
repository: "https://github.com/PUGVale/site-evento-python-vale/"
},
// Site info
site: {
theme: "yellow-swan",
url: "http://pythonvale.com.br/",
googleanalytics: "UA-33656081-1"
},
// Active sections on the website
// to deactivate comment out with '//'
// you can also change order here and it will reflect on page
sections: [
'about',
'location',
'speakers',
'schedule',
'sponsors',
'partners',
'contact'
],
// Labels which you can translate to other languages
labels: {
about: "Sobre",
location: "Localização",
speakers: "Palestrantes",
schedule: "Agenda",
sponsors: "Realização",
partners: "Patrocinadores",
contact: "Contato"
},
// The entire schedule
schedule: [
{
name: "Credenciamento",
time: "9:40 às 10:00",
},
{
name: "Abertura oficial",
time: "10:00 às 10:20",
},
{
name: "",
photo: "themes/yellow-swan/img/speakers/diogo.jpg",
bio: "",
company: "",
link: {
href: "",
text: ""
},
presentation: {
title: "",
description: "",
time: "10:20 às 11:00"
}
},
{
name: "",
photo: "themes/yellow-swan/img/speakers/nasa.png",
bio: "",
company: "",
link: {
href: "",
text: ""
},
presentation: {
title: "",
description: "",
time: "11:00 às 12:00"
}
},
{
name: "Intervalo: Almoço",
time: "12:00 às 13:30",
},
{
name: "",
photo: "themes/yellow-swan/img/speakers/katia.png",
bio: "",
company: "",
link: {
href: "",
text: ""
},
presentation: {
title: "",
description: "",
time: "13:30 às 14:10"
}
},
{
name: "Pausa para a troca de palestrante",
time: "14:10 às 14:15",
},
{
name: "",
photo: "themes/yellow-swan/img/speakers/silvana.jpg",
bio: "",
company: "",
link: {
href: "",
text: ""
},
presentation: {
title: "",
description: "",
time: "14:15 às 14:55"
}
},
{
name: "Intervalo: Coffee Break",
time: "14:55 às 15:15",
},
{
name: "",
photo: "themes/yellow-swan/img/speakers/paulom.jpg",
bio: "",
company: "",
link: {
href: "",
text: ""
},
presentation: {
title: "",
description: "",
time: "15:15 às 15:55"
}
},
{
name: "Pausa para a troca de palestrante",
time: "15:55 às 16:00",
},
{
name: "",
photo: "themes/yellow-swan/img/speakers/willian.jpg",
bio: "",
company: "",
link: {
href: "",
text: ""
},
presentation: {
title: "",
description: "",
time: "16:00 às 16:40"
}
},
{
name: "Sorteios",
time: "16:40 às 17:00",
},
],
//List of Sponsors
sponsors: [
// {
// name: "Django Girls São José dos Campos",
// logo: "themes/yellow-swan/img/dgsjc.png",
// url: "https://djangogirls.org/saojosedoscampos/"
// },
],
// List of Partners
partners: [
{
name: "Designa",
logo: "themes/yellow-swan/img/designa.png",
url: "http://designa.com.br"
}
],
// Theme path
getTheme: function() {
return "themes/" + this.site.theme;
}
}
};