diff options
author | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2019-04-24 00:41:05 +0200 |
---|---|---|
committer | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2019-04-24 00:41:28 +0200 |
commit | 031da25e35cc3ca3bdc1e2783415d27fe83dc8d9 (patch) | |
tree | 05f6623da0c08b71e07ed53bdee1052f839c31ca /website/templates/presentations | |
parent | 4cbe67361ba58f86e8847926f07a5172db1f6d2f (diff) | |
download | lombok-031da25e35cc3ca3bdc1e2783415d27fe83dc8d9.tar.gz lombok-031da25e35cc3ca3bdc1e2783415d27fe83dc8d9.tar.bz2 lombok-031da25e35cc3ca3bdc1e2783415d27fe83dc8d9.zip |
[website] added the 7-lessons presentation as video
Diffstat (limited to 'website/templates/presentations')
-rw-r--r-- | website/templates/presentations/7lessons.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/website/templates/presentations/7lessons.html b/website/templates/presentations/7lessons.html new file mode 100644 index 00000000..3027fbad --- /dev/null +++ b/website/templates/presentations/7lessons.html @@ -0,0 +1,25 @@ +<#import "../_scaffold.html" as main> +<@main.scaffold> + <div class="page-header top5"> + <div class="row text-center"> + <@main.h1 title="The 7 biggest mistakes we made in Project Lombok" /> + <p> + A presentation by Lombok's 2 core authors: Roel Spilker and Reinier Zwitserloot.<br /> + We talk about the 7 biggest mistakes we made managing an open source project for the past 10 years.<br /> + First given at <a href="https://programm.javaland.eu/2019/#/scheduledEvent/579921">Javaland (in Brühl, Germany) on March 19th, 2019</a>. Total length: 40 minutes. + </p> + </div> + <div class="video text-center"> + <video id="presentationVideo" width="640" height="360" poster="/presentations/7lessons-poster.jpg" controls="controls" preload="none"> + <source src="https://projectlombok.org/presentations/7lessons-vp9.webm" type="video/webm" /> + <source src="https://projectlombok.org/presentations/7lessons.webm" type="video/webm" /> + <source src="https://projectlombok.org/presentations/7lessons.mp4" type="video/mp4" /> + <@main.h1 title="Can't watch the video?" /> + <p> + You can download it and watch it with, for example, <a href="https://www.videolan.org/vlc/index.html">The open source VLC media player</a>:<br /> + <a href="/videos/7lessons.mp4">Download: 7 biggest mistakes we made in Project Lombok</a> + </p> + </video> + </div> + </div> +</@main.scaffold> |