forked from braziljs/conf-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocpad.js
128 lines (114 loc) · 5.31 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
module.exports = {
prompts: false,
// These are variables will be accessible via our templates
templateData: {
// Conference info
conf: {
name: "JUG TOUR BRASIL 2015 EDIÇÃO SALVADOR",
description: "Serie de eventos em comemoração aos 20 anos do Java",
date: "13:00hs - 04 de Julho de 2015",
// If your event is free, just comment this line
//price: "$0",
venue: "Universidade Catolica do Salvador - UCSal - Campus Pituaçu",
address:"Avenida Professor Pinto de Aguiar, 2589, Salvador , Bahia, Brasil",
city: "Salvador",
state: "Bahia"
},
// The Call To Action button at the header,
// If you don't want this, just remove the callToAction property.
callToAction: {
text: "Inscreva-se!",
link: "http://even.tc/jugtourbrasil2015edssa"
},
// Site info
site: {
theme: "yellow-swan",
url: "http://javaTour2015.github.io/javaTour2015/",
googleanalytics: "UA-2890985-10"
},
// 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: "Patrocinadores",
partners: "Realização",
contact: "Contato"
},
// The entire schedule
schedule: [
{
name: "Bruno Borges",
photo: "themes/yellow-swan/img/brunoborges.jpeg",
bio: "Gerente de Produtos da Oracle na linha Java EE como GlassFish e WebLogic. Profissional da área há 10 anos, atuou em empresas como EDS/HP, CETIP, Summa Technologies, CETIP, Neociclo e agora arquiteto de sistemas na wdev; desenvolve softwares e soluções em padrões de integração (EIPs), aplicativos Web e aplicativos Android. Participante de comunidades de software livre (RioJUG, SouJava, Apache Software Foundation, #horaextra), fundou o grupo Wicket em Português e contribui para projetos Open Source da ASF",
company: "Oracle",
link: {
href: "http://twitter.com/brunoborges",
text: "@brunoborges"
},
presentation: {
title: "Desenvolva e Teste Aplicativos Java em Minutos no Oracle Java Cloud Service",
description: "Nesta sessão, você terá uma experiência em primeira mão com o desenvolvimento e teste de aplicativos Java no Oracle Java Cloud Service, o PaaS (Plataforma como Serviço) da Oracle. Venha conferir o Oracle Java Cloud Service de dois ângulos diferentes: como administrador, você irá provisionar e administrar um novo serviço em um amigável portal na nuvem. Como desenvolvedor, você irá implementar e testar um aplicativo da web usando o serviço de desenvolvimento baseado na nuvem, Oracle Developer Cloud Service. Saiba como acelerar seu ambiente de desenvolvimento e testes para aplicações Java com Oracle Cloud.",
//time: "11h00"
}
},
{
name: "Stephen Chin",
photo: "themes/yellow-swan/img/stephenchin.jpg",
bio: "Stephen Chin is a technical expert in RIA technologies, and Chief Agile Methodologist at GXS. He coauthored the Apress Pro JavaFX Platform title, which is the leading technical reference for JavaFX, and is lead author of the Pro Android Flash title. In addition, Stephen runs the very successful Silicon Valley JavaFX User Group, which has hundreds of members and tens of thousands of online viewers, and also is co-organizer for the Flash on Devices User Group. Finally, he is a Java Champion, chair of the OSCON Java conference, and an internationally recognized speaker featured at Devoxx, Jazoon, and JavaOne, where he received a Rock Star Award",
company: "GXS",
link: {
href: "https://twitter.com/steveonjava",
text: "@steveonjava"
},
presentation: {
title: "Raspberry Pi with Java",
description: "Through the demonstration of working projects and source code, this session will show you how to use your Java programming skills to create hobby projects using Raspberry Pi as an inexpensive interface to the physical world. After this session, you will know how to start building your own embedded projects for the home or office and how to leverage your Java programming skills to connect it to the Internet of Things. Start building the future now with embedded Java 8 technology!",
//time: "11h00"
}
}
],
// List of Sponsors
sponsors: [
// {
// name: "Eventick",
// logo: "themes/yellow-swan/img/sponsor.png",
// url: "http://eventick.com.br"
// }
],
// List of Partners
partners: [
{
name: "Java Bahia",
logo: "themes/yellow-swan/img/JavaBahiaLogo.png",
url: "http://javabahia.blogspot.com.br"
},
{
name: "UCSal",
logo: "themes/yellow-swan/img/ucsal.jpg",
url: "http://www.ucsal.br"
}
],
// Theme path
getTheme: function() {
return "themes/" + this.site.theme;
},
// Site Path
getUrl: function() {
return this.site.url;
}
}
};