diff --git a/program/templates/program_base.html b/program/templates/program_base.html index 060db1b5..03f61294 100644 --- a/program/templates/program_base.html +++ b/program/templates/program_base.html @@ -1,6 +1,6 @@ -{% extends 'base.html' %} +{% extends 'schedule_base.html' %} -{% block content %} +{% block schedule_content %} Overview @@ -18,6 +18,6 @@
{% block program_content %} -{% endblock %} +{% endblock program_content %} -{% endblock %} +{% endblock schedule_content %} diff --git a/program/templates/program_overview.html b/program/templates/program_overview.html index 07fa2363..ba61d8e5 100644 --- a/program/templates/program_overview.html +++ b/program/templates/program_overview.html @@ -1,11 +1,6 @@ {% extends 'program_base.html' %} {% block program_content %} -

- Call for Speakers - Speakers - Talks & Events -

All diff --git a/program/templates/schedule_base.html b/program/templates/schedule_base.html new file mode 100644 index 00000000..f74402ce --- /dev/null +++ b/program/templates/schedule_base.html @@ -0,0 +1,16 @@ +{% extends 'base.html' %} + +{% block content %} +

+ Schedule + Call for Speakers + Speakers + Talks & Events +

+ +
+ +{% block schedule_content %} +{% endblock schedule_content %} + +{% endblock content %}