diff --git a/pinaxcon/templates/symposion/schedule/_schedule_nav_link.html b/pinaxcon/templates/symposion/schedule/_schedule_nav_link.html
new file mode 100644
index 00000000..3f882773
--- /dev/null
+++ b/pinaxcon/templates/symposion/schedule/_schedule_nav_link.html
@@ -0,0 +1,9 @@
+
+ {{ label }}
+
\ No newline at end of file
diff --git a/pinaxcon/templates/symposion/schedule/schedule_conference.html b/pinaxcon/templates/symposion/schedule/schedule_conference.html
index 7ef7df63..ccfabd2c 100644
--- a/pinaxcon/templates/symposion/schedule/schedule_conference.html
+++ b/pinaxcon/templates/symposion/schedule/schedule_conference.html
@@ -21,16 +21,41 @@
+ {% if timetable.day.date|date:"Y-m-d" == "2019-01-21" %}
+
+ {{ section.schedule.section.name }}
+
+ {% endif %}
+ {% endfor %}
+ {% endif %}
+ {% endfor %}
+
+
+ Tuesday
+ {% for section in sections %}
+ {% if "Miniconf" in section.schedule.section.name %}
+ {% for timetable in section.days %}
+ {% if timetable.day.date|date:"Y-m-d" == "2019-01-22" %}
+ {% include "symposion/schedule/_schedule_nav_link.html" with label=section.schedule.section.name %}
+ {% endif %}
+ {% endfor %}
+ {% endif %}
+ {% endfor %}
+
+
+ {% for section in sections %}
+ {% if "Miniconf" not in section.schedule.section.name %}
+ {% for timetable in section.days %}
+ {% include "symposion/schedule/_schedule_nav_link.html" with active=forloop.first label=timetable.day.date|date:"l" %}
+ {% endfor %}
+ {% endif %}
+ {% endfor %}
+
+