diff --git a/taccsite_cms/templates/base.html b/taccsite_cms/templates/base.html index 0208ca69b..942f38ff9 100755 --- a/taccsite_cms/templates/base.html +++ b/taccsite_cms/templates/base.html @@ -17,7 +17,7 @@ {% include 'analytics.html' %} - {% block title %} This is my new project home page {% endblock title %} + {% block title %}{% page_attribute "page_title" %}{% endblock title %} diff --git a/taccsite_cms/templates/fullwidth.html b/taccsite_cms/templates/fullwidth.html index 9d9155095..32c1b171f 100755 --- a/taccsite_cms/templates/fullwidth.html +++ b/taccsite_cms/templates/fullwidth.html @@ -1,8 +1,6 @@ {% extends "base.html" %} {% load cms_tags %} -{% block title %}{% page_attribute "page_title" %}{% endblock title %} - {# To remove container and breadcrumbs #} {% block content %} {% placeholder "content" %} diff --git a/taccsite_cms/templates/sidebar_left.html b/taccsite_cms/templates/sidebar_left.html index ddc226ef0..54321f921 100755 --- a/taccsite_cms/templates/sidebar_left.html +++ b/taccsite_cms/templates/sidebar_left.html @@ -1,8 +1,6 @@ {% extends "base.html" %} {% load cms_tags %} -{% block title %}{% page_attribute "page_title" %}{% endblock title %} - {% block assets_custom %} {{ block.super }} diff --git a/taccsite_cms/templates/sidebar_right.html b/taccsite_cms/templates/sidebar_right.html index 457f552ae..0d4ed0aaa 100755 --- a/taccsite_cms/templates/sidebar_right.html +++ b/taccsite_cms/templates/sidebar_right.html @@ -1,8 +1,6 @@ {% extends "base.html" %} {% load cms_tags %} -{% block title %}{% page_attribute "page_title" %}{% endblock title %} - {% block assets_custom %} {{ block.super }} diff --git a/taccsite_cms/templates/standard.html b/taccsite_cms/templates/standard.html index 1498c1447..37e384c01 100644 --- a/taccsite_cms/templates/standard.html +++ b/taccsite_cms/templates/standard.html @@ -1,4 +1,2 @@ {% extends "base.html" %} {% load cms_tags %} - -{% block title %}{% page_attribute "page_title" %}{% endblock title %}