-
Notifications
You must be signed in to change notification settings - Fork 1
/
docpad.js~
95 lines (84 loc) · 1.91 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
module.exports = {
prompts: false,
// These are variables will be accessible via our templates
templateData: {
// Conference info
conf: {
nome: "Python Weekend 2015 | Feira de Santana - Bahia - Brasil",
descricao_rapida: "Conference description",
sobre_evento: "Sobre o evento",
data: "November 15",
// If your event is free, just comment this line
preco: "$100",
local: "Coco Bongo",
endereco: "Endereço do evento",
cidade: "Feira de Santana",
estado: "BA",
pais: "Brasil"
},
curso: {
nome: "Name of course",
data: "Data minicurso",
horario: "Horario minicurso",
descricao_rapida: "Course description",
name_palestrante: "",
sobre_palestrante: ""
},
// The Call To Action button at the header,
// If you don't want this, just remove the callToAction property.
callToAction: {
text: "Register now!",
link: "http://eventick.com.br"
},
// Active sections on the website
// to deactivate comment out with '//'
// you can also change order here and it will reflect on page
sections: [
'about',
'minicurso',
'location',
'payment',
'schedule',
//'sponsors'
//'partners'
// 'contact'
],
// Labels which you can translate to other languages
labels: {
about: "About",
location: "Location",
speakers: "Speakers",
schedule: "Schedule",
sponsors: "Sponsors",
partners: "Partners",
contact: "Contact"
},
programacao: [
{
horario: "Horário da palestra",
palestrante: "Nome do palestrante",
titulo: "Titulo da palestra"
},
{
horario: "08:30",
palestrante: "Douglas da Cruz Cerqueira",
titulo: "Django para desenvolvimento de paginas web"
}
],
patrocinadores: [
{
nome: "",
logo: "",
url: ""
}
],
// List of Sponsors
sponsors: [
{
name: "Eventick",
logo: "themes/yellow-swan/img/sponsor.png",
url: "http://eventick.com.br"
}
],
}
};