diff --git a/templates/schedule.html.twig b/templates/schedule.html.twig
new file mode 100644
index 0000000..9bcd869
--- /dev/null
+++ b/templates/schedule.html.twig
@@ -0,0 +1,33 @@
+{% extends 'partials/base.html.twig' %}
+
+{% block head %}
+
+
+ {{ parent() }}
+
+{% endblock head %}
+
+{% block stylesheets %}
+ {% do assets.addCss('/schedule/assets/styles.bundle.css') %}
+
+ {{ parent() }}
+
+{% endblock %}
+
+{% block bottom %}
+ {{ parent() }}
+
+ {% do assets.addJs('/schedule/assets/inline.bundle.js') %}
+ {% do assets.addJs('/schedule/assets/polyfills.bundle.js') %}
+ {% do assets.addJs('/schedule/assets/main.bundle.js') %}
+
+ {{ assets.js() }}
+
+{% endblock %}
+
+{% block content %}
+
+
+{% endblock %}