From 4d2309123cef988d6e52d388b87c29b53d1ff247 Mon Sep 17 00:00:00 2001 From: rsiddharth Date: Sat, 13 Feb 2016 21:32:06 -0500 Subject: Templates are now at /libreplanet-templates/ --- libreplanet-templates/2016/lp-speakers.jinja2 | 124 ++++++++++++++++++++++++++ 1 file changed, 124 insertions(+) create mode 100644 libreplanet-templates/2016/lp-speakers.jinja2 (limited to 'libreplanet-templates/2016/lp-speakers.jinja2') diff --git a/libreplanet-templates/2016/lp-speakers.jinja2 b/libreplanet-templates/2016/lp-speakers.jinja2 new file mode 100644 index 0000000..5c1c132 --- /dev/null +++ b/libreplanet-templates/2016/lp-speakers.jinja2 @@ -0,0 +1,124 @@ +{# -*- mode: jinja2; -*- #} +{# + Copyright (C) 2016 lpschedule-generator contributors. See CONTRIBUTORS. + + This file is part of lpschedule-generator. + + lpschedule-generator is free software: you can redistribute it + and/or modify it under the terms of the GNU General Public License + as published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + lpschedule-generator is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. + + You should have received a copy of the GNU General Public License + along with lpschedule-generator (see COPYING). If not, see + . +#} + + +{# make speakers header macro #} +{% macro mk_speakers_header(speaker_type) %} +
+
+ {% if speaker_type == 'keynote-speakers' %} +

Keynote speakers

+ {% else %} +

Speakers

+ {% endif %} +
+
+{% endmacro %} + +{# make keynote speaker header macro #} +{% macro mk_keynote_speaker_header(speaker, id) %} +
+
+

{{ speaker }}

+
+
+{% endmacro %} + +{# make speaker header macro #} +{% macro mk_speaker_header(speaker, id) %} +
+
+

{{ speaker }}

+
+
+{% endmacro %} + +{# make bio macro #} +{% macro mk_bio(bio_list) %} + {% for bio_p in bio_list %} +

{{ bio_p }}

+ {% endfor %} +{% endmacro %} + +{# populate keynote speakers macro #} +{% macro populate_keynote_speakers(speakers) %} + {% for speaker in speakers %} +
+ +
+ {% if speaker.img_url %} + +
+ [ {{ speaker.img_alt }} ] +
+ +
+ {% else %} + +
+ {% endif %} + {{ mk_keynote_speaker_header(speaker.speaker, speaker.id) }} + {{ mk_bio(speaker.bio) }} +
+
+
+ {% endfor %} +{% endmacro %} + +{# populate speakers macro #} +{% macro populate_speakers(speakers) %} + {% for speaker in speakers %} +
+
+ {% if speaker.img_url %} + +
+ [ {{ speaker.img_alt }} ] +
+ +
+ {% else %} + +
+ {% endif %} + {{ mk_speaker_header(speaker.speaker, speaker.id) }} + {{ mk_bio(speaker.bio) }} +
+
+
+ {% endfor %} +{% endmacro %} + +{# lp speakers 2016 template start #} +{% for speaker_type, speakers in lp_dict.iteritems() %} +
+ {% if speaker_type == 'keynote-speakers' %} + {{ mk_speakers_header(speaker_type) }} + {{ populate_keynote_speakers(speakers) }} + {% elif speaker_type == 'speakers' %} + {{ mk_speakers_header(speaker_type) }} + {{ populate_speakers(speakers) }} + {% endif %} +
+{% endfor %} +{# lp speakers 2016 template end #} -- cgit v1.2.3