The Office Quotes{% if title %} - {{ title }}{% endif %}
{% block head %}
+
+
+
{% endblock head %}
diff --git a/app/templates/content.html b/app/templates/content.html
index a185b0d..51cb4d9 100644
--- a/app/templates/content.html
+++ b/app/templates/content.html
@@ -1,4 +1,38 @@
{% extends 'base.html' %}
+{% block head %}
+{{ super() }}
+
+{% endblock head %}
{% block body %}
{{ super() }}
+
+
+
+
+
+ {% block content %}
+ {% endblock content %}
+
+
+
+
+
{% endblock body %}
\ No newline at end of file
diff --git a/app/templates/episode.html b/app/templates/episode.html
index 1280fe3..868c60f 100644
--- a/app/templates/episode.html
+++ b/app/templates/episode.html
@@ -1,5 +1,5 @@
{% extends 'content.html' %}
-{% block body %}
+{% block content %}
Go to Season {{ episode.season_id }} Rebuild Episode
@@ -12,4 +12,4 @@
{% endfor %}
{% endfor %}
-{% endblock body %}
\ No newline at end of file
+{% endblock content %}
\ No newline at end of file
diff --git a/app/templates/season.html b/app/templates/season.html
index c7594e0..1b0e761 100644
--- a/app/templates/season.html
+++ b/app/templates/season.html
@@ -1,5 +1,5 @@
-{% extends 'base.html' %}
-{% block body %}
+{% extends 'content.html' %}
+{% block content %}
{{ super() }}
See all Seasons
@@ -12,4 +12,4 @@ Season {{ season.id }}
{% endfor %}
-{% endblock body %}
\ No newline at end of file
+{% endblock content %}
\ No newline at end of file
diff --git a/app/templates/view.html b/app/templates/view.html
index 76de35a..408aea2 100644
--- a/app/templates/view.html
+++ b/app/templates/view.html
@@ -1,8 +1,8 @@
-{% extends 'base.html' %}
-{% block body %}
+{% extends 'content.html' %}
+{% block content %}
{{ super() }}
{% for season in seasons %}
Season {{ season.id }}
{% endfor %}
-{% endblock body %}
\ No newline at end of file
+{% endblock content %}
\ No newline at end of file