|
| 1 | +extends ../base |
| 2 | + |
| 3 | +//- render single speaker |
| 4 | +mixin talk(speaker) |
| 5 | + .talk-description |
| 6 | + .speaker= speaker.name |
| 7 | + |
| 8 | + p= speaker.title |
| 9 | + |
| 10 | + a.social.github(href="https://github.com/" + speaker.github) |
| 11 | + .fa.fa-github |
| 12 | + a.social.twitter(href="https://twitter.com/" + speaker.twitter) |
| 13 | + .fa.fa-twitter |
| 14 | + |
| 15 | + .commit-holder |
| 16 | + .commit |
| 17 | + img.avatar(src=avatar(speaker.avatar), alt='Photo of ' + speaker.name) |
| 18 | + |
| 19 | +block vars |
| 20 | + - var pageClass = "page-talks" |
| 21 | + |
| 22 | +block viewport |
| 23 | + .container |
| 24 | + h1 Talks & Keynotes |
| 25 | + |
| 26 | + .event-full.general |
| 27 | + h2.title The grand opening |
| 28 | + .talk-description |
| 29 | + p. |
| 30 | + Welcome to the first PyCon CZ. #[br] |
| 31 | + Meet our sponsors and get ready for a day full awesome talks! |
| 32 | + |
| 33 | + .commit.empty.first |
| 34 | + .dot |
| 35 | + |
| 36 | + .event-full |
| 37 | + h2.title Keynote #1 #[br] Twisted |
| 38 | + .talk-description |
| 39 | + .speaker Amber Brown |
| 40 | + p. |
| 41 | + Amber, better known as HawkOwl, is a core developer and release |
| 42 | + manager of the Twisted project. |
| 43 | + |
| 44 | + .commit |
| 45 | + img.avatar( |
| 46 | + src=avatar("amber_brown.jpg"), |
| 47 | + alt='Photo of Amber Brown' |
| 48 | + ) |
| 49 | + |
| 50 | + .event-full |
| 51 | + h2.title Keynote #2 #[br] Funding of open-source projects |
| 52 | + .talk-description |
| 53 | + .speaker Russel-Keith Maggee |
| 54 | + p. |
| 55 | + Dr Russell Keith-Magee is a 9 year veteran of the Django core team, |
| 56 | + and President of the Django Software Foundation. |
| 57 | + |
| 58 | + .commit |
| 59 | + img.avatar( |
| 60 | + src=avatar("russell_keith_magee.png"), |
| 61 | + alt='Photo of Russel Keith-Magee' |
| 62 | + ) |
| 63 | + |
| 64 | + .branch |
| 65 | + img( |
| 66 | + src="/2015/static/images/ui/branch-in.svg", |
| 67 | + onerror="this.onerror = null; this.src = '/2015/static/images/ui/branch-in.png'" |
| 68 | + ) |
| 69 | + |
| 70 | + //- Iterate over speakers object (loaded in gulpfile from data/speakers.json) |
| 71 | + //- and render mixin talk() (see above) |
| 72 | + each speaker, index in speakers |
| 73 | + .talk-block |
| 74 | + .event.master |
| 75 | + +talk(speaker[0]) |
| 76 | + |
| 77 | + .event.practical |
| 78 | + +talk(speaker[1]) |
| 79 | + |
| 80 | + .branch |
| 81 | + img( |
| 82 | + src="/2015/static/images/ui/branch-out.svg", |
| 83 | + onerror="this.onerror = null; this.src = '/2015/static/images/ui/branch-out.png'" |
| 84 | + ) |
| 85 | + |
| 86 | + .event-full.general |
| 87 | + .title |
| 88 | + h2 Lightning talks |
| 89 | + .talk-description |
| 90 | + p. |
| 91 | + The is only one rule of lighning talks: #[br] |
| 92 | + 5 mins and hard cut. Get on stage and share your experience! |
| 93 | + |
| 94 | + .commit.empty |
| 95 | + .dot |
| 96 | + |
| 97 | + .event-full.general |
| 98 | + .title |
| 99 | + h2 Thank you |
| 100 | + .talk-description |
| 101 | + p. |
| 102 | + The first day of PyCon CZ is over. |
| 103 | + Wrap it up and enjoy evening party. |
| 104 | + See you tomorrow at sprint venue! |
| 105 | + |
| 106 | + .commit.empty.last |
| 107 | + .dot |
| 108 | + |
| 109 | + a.anchor#directions |
| 110 | + h2 The venue |
| 111 | + |
| 112 | + p.lead. |
| 113 | + The conference is going to be held in Brno University of Technology. |
| 114 | + |
| 115 | + .map |
| 116 | + address |
| 117 | + p.strong VUT FIT |
| 118 | + p 49°11'25.8"N 16°37'13.1"E |
| 119 | + p Building D |
| 120 | + p Božetěchova 1/2 |
| 121 | + p 612 66 Brno |
| 122 | + p Czech Republic |
| 123 | + |
| 124 | + #map.vut |
0 commit comments