summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrsiddharth <rsd@gnu.org>2019-07-13 16:59:19 -0400
committerrsiddharth <rsd@gnu.org>2019-07-13 16:59:19 -0400
commit054d04aa6abb0dd7e7b5b4d8484c2d6da0251f91 (patch)
treeaf0d1ac5c80adad7ce35d2351636b0932e234866
parente6161cf8dcdd6c0677d0f72c5b14da0312b26906 (diff)
Remove libreplanet-templates/2016/lp-schedule.jinja2
-rw-r--r--libreplanet-templates/2016/lp-schedule.jinja2115
1 files changed, 0 insertions, 115 deletions
diff --git a/libreplanet-templates/2016/lp-schedule.jinja2 b/libreplanet-templates/2016/lp-schedule.jinja2
deleted file mode 100644
index 09757d3..0000000
--- a/libreplanet-templates/2016/lp-schedule.jinja2
+++ /dev/null
@@ -1,115 +0,0 @@
-{# -*- mode: jinja2; -*- #}
-{#
- SPDX-License-Identifier: CC0-1.0
-
- This file is part of lpschedule-generator.
-#}
-
-{# macros start #}
-
-{# make speakers macro #}
-{% macro mk_speakers(speakers) %}
- {% if speakers[0]|lower != 'speakertba' %}
- <span class="program-session-speaker">
- {% for speaker in speakers %}
- {% if loop.last %}
- {{ speaker }}
- {% else %}
- {{ speaker }},
- {% endif %}
- {% endfor %}
- </span>
- {% endif %}
-{% endmacro %}
-
-{# make room macro #}
-{% macro mk_room(room) %}
- {% if room|lower != 'roomtba' %}
- <span class="room label label-default">{{ room }}</span>
- {% endif %}
-{% endmacro %}
-
-{# make day header macro #}
-{% macro mk_day_header(day, collapse_area) %}
- {% if day|trim != '' %}
- <header class="program-day-header">
- <hgroup>
- <h2>{{ day }}</h2>
- </hgroup>
- </header>
- {% endif %}
-{% endmacro %}
-
-{# make timeslot header macro #}
-{% macro mk_timeslot_header(timeslot, collapse, collapse_area='') %}
- {% if timeslot|trim != '' %}
- <header class="program-timeslot-header">
- <hgroup>
- <h2>{{ timeslot }}</h2>
- </hgroup>
- </header>
- {% endif %}
-{% endmacro %}
-
-{# make session header macro #}
-{% macro mk_session_header(session) %}
- <header class="program-session-header">
- <hgroup>
- <h2>{{ session }}</h2>
- </hgroup>
- </header>
-{% endmacro %}
-
-{# desc macro #}
-{% macro desc(disc_list) %}
- {% for desc_p in disc_list %}
- <p>{{ desc_p }}</p>
- {% endfor %}
-{% endmacro %}
-
-{# populate sessions macro #}
-{% macro populate_sessions(sessions, day_index, timeslot_index) %}
- {% for session, session_info in sessions.iteritems() %} {# session start #}
- <section id="day-{{ day_index }}-timeslot-{{ timeslot_index }}-session-{{ loop.index }}" class="program-session">
- {{ mk_session_header(session) }}
- {{ mk_speakers(session_info['speakers']) }}
- <p class="program-session-room-details">
- {{ mk_room(session_info['room']) }}
- {% if session_info['desc'][0]|lower == 'desctba' %}
- </p>
- {% else %}
- <button class="btn btn-default btn-xs"
- data-toggle="collapse" aria-expanded="false"
- aria-controls="day-{{ day_index }}-timeslot-{{ timeslot_index }}-session-{{ loop.index }}-collapse"
- data-target="#day-{{ day_index }}-timeslot-{{ timeslot_index }}-session-{{ loop.index }}-collapse">
- Details
- </button>
- </p>
- <div class="session-desc collapse in"
- id="day-{{ day_index }}-timeslot-{{ timeslot_index }}-session-{{ loop.index }}-collapse">
- {{ desc(session_info['desc']) }}
- </div> <!-- day-{{ day_index }}-timeslot-{{ timeslot_index }}-session-{{ loop.index }}-collapse end -->
- {% endif %}
- </section> <!-- day-{{ day_index }}-timeslot-{{ timeslot_index }}-session-{{ loop.index }} end -->
- {% endfor %} {# session end #}
-{% endmacro %}
-
-{# populate timeslots macro #}
-{% macro populate_timeslots(timeslots, day_index) %}
- {% for timeslot, sessions in timeslots.iteritems() %} {# timeslot start #}
- <article id="day-{{ day_index }}-timeslot-{{ loop.index }}" class="program-timeslot">
- {{ mk_timeslot_header(timeslot) }}
- {% if sessions|length > 0 %}
- {{ populate_sessions(sessions, day_index, loop.index) }}
- {% endif %}
- </article> <!-- day-{{ day_index }}-timeslot-{{ loop.index }} end -->
- {% endfor %} {# timeslot start #}
-{% endmacro %}
-
-{# lp schedule 2016 template start #}
-{% for day, timeslots in lp_dict.iteritems() %} {# day start #}
- <article id="day-{{ loop.index }}-program" class="program-day">
- {{ mk_day_header(day) }}
- {{ populate_timeslots(timeslots, loop.index) }}
- </article> <!-- day-{{ loop.index }} end -->
-{% endfor %} {# day loop end #}