summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorrsiddharth <rsd@gnu.org>2015-12-19 12:29:08 -0500
committerrsiddharth <rsd@gnu.org>2015-12-19 12:29:08 -0500
commit209db125634cb6e681492ee8a4e2c35770ede044 (patch)
tree20e412d8cf8065899deebcdb3728a46e3d5a55b9 /templates
parentb3003ac5946426c4facef5502f302cf29d0d3413 (diff)
updated templates/lp-sch-2016.jinja2
Removed extraneous comments.
Diffstat (limited to 'templates')
-rw-r--r--templates/lp-sch-2016.jinja26
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/lp-sch-2016.jinja2 b/templates/lp-sch-2016.jinja2
index d676757..d8e413b 100644
--- a/templates/lp-sch-2016.jinja2
+++ b/templates/lp-sch-2016.jinja2
@@ -92,7 +92,7 @@
{# 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"> <!-- day-{{ day_index }}-timeslot-{{ timeslot_index }}-session-{{ loop.index }} start -->
+ <section id="day-{{ day_index }}-timeslot-{{ timeslot_index }}-session-{{ loop.index }}" class="program-session">
{{ mk_session_header(session) }}
{{ mk_speakers(session_info['speakers']) }}
{{ mk_room(session_info['room']) }}
@@ -104,7 +104,7 @@
{# 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"> <!-- day-{{ day_index }}-timeslot-{{ loop.index }} start -->
+ <article id="day-{{ day_index }}-timeslot-{{ loop.index }}" class="program-timeslot">
{{ mk_timeslot_header(timeslot, sessions|length > 0, "day-%d-timeslot-%d-sessions"|format(day_index, loop.index)) }}
{% if sessions|length > 0 %}
<div class="collapse in"
@@ -118,7 +118,7 @@
{# lp 2016 template start #}
{% for day, timeslots in schedule.iteritems() %} {# day start #}
- <article id="day-{{ loop.index }}-program" class="program-day"> <!-- day-{{ loop.index }} start -->
+ <article id="day-{{ loop.index }}-program" class="program-day">
{{ mk_day_header(day, "day-%d-timeslots"|format(loop.index)) }}
<div class="collapse in" id="day-{{ loop.index }}-timeslots">
{{ populate_timeslots(timeslots, loop.index) }}