Skip to content

Commit

Permalink
feat(schedule): Add Juho's talk
Browse files Browse the repository at this point in the history
  • Loading branch information
bebraw committed Apr 29, 2018
1 parent 8c192d5 commit 0f6e567
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 6 deletions.
1 change: 1 addition & 0 deletions src/keywords.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ module.exports = {
REASON: "Reason",
SSR: "Server Side Rendering",
STATE_MANAGEMENT: "State management",
STATIC_SITE_GENERATATION: "Static site generation",
STYLING: "Styling",
STYLEGUIDIST: "Styleguidist",
STYLE_GUIDES: "Style guides",
Expand Down
12 changes: 6 additions & 6 deletions src/schedules/26-04-2018.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,14 @@ module.exports = {
},
{
begin: "09:15",
end: "10:00",
end: "09:45",
sessions: [require("../talks/ken-wheeler")],
},
{
begin: "09:45",
end: "10:00",
sessions: [require("../talks/juho-vepsalainen")],
},
{
begin: "10:15",
end: "10:45",
Expand Down Expand Up @@ -67,11 +72,6 @@ module.exports = {
end: "16:30",
sessions: [require("../talks/gant-laborde")],
},
{
begin: "16:30",
end: "16:45",
sessions: [require("../coffee-breaks").find(o => o.day === day)],
},
{
begin: "16:45",
end: "17:00",
Expand Down
11 changes: 11 additions & 0 deletions src/talks/juho-vepsalainen.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
const enums = require("../enums");
const keywords = require("../keywords");
const speaker = require("../speakers/juho-vepsalainen");

module.exports = {
speakers: [speaker],
title: "Static Websites - The Final Frontier",
description: "What was it like to build sites in the 90s? What did we learn? And how to do it now?",
type: enums.LIGHTNING_TALK,
keywords: [keywords.REACT, keywords.STATIC_SITE_GENERATATION, keywords.WEBPACK],
};

0 comments on commit 0f6e567

Please sign in to comment.