-
Notifications
You must be signed in to change notification settings - Fork 1
/
docpad.js
136 lines (124 loc) · 3.29 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
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: "Um final de semana sobre Python",
sobre_evento: "O Python Weekend é um evento realizado por pessoas como você que tem utilizam Python ou tem interesse em aprender mais",
data: "14 e 15 de Março",
// If your event is free, just comment this line
preco: "$30 reais (Promocional)",
local: "Auditório do Multiplace",
endereco: " Rua Jovelino Carneiro, 3665, Feira de Santana - BA, 44149-999",
cidade: "Feira de Santana",
estado: "BA",
pais: "Brasil"
},
curso: {
nome: "Python para Zumbis,
data: "14 de Março",
horario: "Horario minicurso",
descricao_rapida: "",
name_palestrante: "Fernando Masanori",
sobre_palestrante: "Docente da FATEC São José dos Campos, adora dar aulas, graduado em Computação pelo IME-USP, mestrado pelo ITA. Desenvolveu projetos para a Cobra Tecnologia, Credicard Mastercard, PriceWaterhouse & Coopers e Itaú BankBoston. Interesses: Python, NoSQL, Pentaho, Google Technology, Facebook."
},
// The Call To Action button at the header,
// If you don't want this, just remove the callToAction property.
callToAction: {
text: "Inscreva-se agora!",
link: "www.doity.com.br/python-weekend-2015"
},
// 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: "Sobre",
location: "Localização",
speakers: "Palestrantes",
schedule: "Programação",
sponsors: "Patrocinadores",
partners: "Parceiros",
contact: "Contato"
},
programacao: [
{
horario: "8:30 - 10:50",
palestrante: "Total Informática",
titulo: "Minicurso - Interface Gráfica com Python"
},
{
horario: "10:50 - 11:30",
palestrante: "Tupy",
titulo: "Sendo definido"
},
{
horario: "11:30 - 12:10",
palestrante: "Ivo Lima",
titulo: "Sendo definido"
},
{
horario: "14:10 - 14:50",
palestrante: "Diego Leite",
titulo: "Scrapy"
},
{
horario: "14:50 - 15:30",
palestrante: "Jonata Weber",
titulo: "Home-Office"
},
{
horario: "15:50 - 16:30",
palestrante: "Douglas da Cruz Cerqueira",
titulo: "Django para desenvolvimento de paginas web"
}
{
horario: "16:30 - 17:10",
palestrante: "Total Informática",
titulo: "Minicurso - Interface Gráfica com Python"
},
],
patrocinadores: [
{
nome: "Asa Inovação",
logo: "themes/asa.jpg",
url: "http://www.asainovacao.com.br/"
},
{
nome: "D.A. Ecomp Uefs",
logo: "themes/da-ecomp.jpg",
url: "https://www.facebook.com/d.a.ecomp.uefs.7"
},
{
nome: "Sagui Tech",
logo: "",
url: ""
},
{
nome: "Total Informática",
logo: "themes/total.png",
url: "http://www.infototal.com.br/"
}
],
// List of Sponsors
sponsors: [
{
name: "Doity",
logo: "themes/doity.png",
url: "http://doity.com.br"
}
],
}
};