Skip to content

Commit

Permalink
Descrição das palestras
Browse files Browse the repository at this point in the history
Descrição das palestras
  • Loading branch information
mariojp committed Jun 9, 2015
1 parent 506dc87 commit bab9e35
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 19 deletions.
12 changes: 7 additions & 5 deletions docpad.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ module.exports = {
'about',
'location',
'speakers',
//'schedule',
'schedule',
//'sponsors',
'partners',
'contact'
Expand All @@ -62,27 +62,29 @@ module.exports = {
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: "Introducing Windows 12",
//description: "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo",
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: "Introducing Windows 12",
//description: "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo",
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"
}
}
Expand Down
15 changes: 9 additions & 6 deletions src/documents/themes/yellow-swan/css/base.less
Original file line number Diff line number Diff line change
Expand Up @@ -133,10 +133,12 @@ nav {
}
.schedule-tbl td, .schedule-tbl th {
position:relative;
padding:20px 30px;
font-size:1.4em;
line-height:1.4em;
text-align:left;
//padding:20px 30px;
padding:10px 20px;
font-size:1.5em;
line-height:1.5em;
text-align:justify;
font-weight: lighter;
}
.schedule-tbl th {
padding: 5px 30px;
Expand All @@ -149,11 +151,12 @@ nav {
width: 40px;
height: 40px;
float:left;
margin-right:20px;
//margin-right:20px;
margin-right:10px;
}
.schedule-tbl .schedule-time {text-align:center;}
.schedule-slot {
width: 250px;
width: 300px;
font-size:16px;
}
.speakers-company {
Expand Down
14 changes: 6 additions & 8 deletions src/partials/section/schedule.html.eco
Original file line number Diff line number Diff line change
@@ -1,21 +1,19 @@
<h2 class="section-title"><%= @labels['schedule'] %></h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.</p>
<div class="schedule-tbl">
<table>
<thead>
<tr>
<th class="schedule-time">Time</th>
<th class="schedule-slot">Slot</th>
<th class="schedule-description">Description</th>
<!--<th class="schedule-time">Time</th>-->
<th class="schedule-slot">Palestra</th>
<th class="schedule-description">Descrição</th>
</tr>
</thead>
<tbody>

<% for slot in @schedule: %>
<% if slot.presentation: %>
<tr>
<td class="schedule-time"><%= slot.presentation.time %></td>
<!--<td class="schedule-time"><%= slot.presentation.time %></td>-->
<td class="schedule-slot">
<% if slot.photo: %>
<span class="speaker-photo">
Expand All @@ -29,7 +27,7 @@ tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.</p>
</tr>
<% else: %>
<tr class="schedule-other">
<td class="schedule-time"><%= slot.time %></td>
<!--<td class="schedule-time"><%= slot.time %></td>-->
<td class="schedule-slot"><%= slot.name %></td>
<td class="schedule-description">-</td>
</tr>
Expand All @@ -38,4 +36,4 @@ tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.</p>

</tbody>
</table>
</div>
</div>

0 comments on commit bab9e35

Please sign in to comment.