diff options
author | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-06-24 16:59:30 -0400 |
---|---|---|
committer | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-06-24 16:59:30 -0400 |
commit | 8fb604d53e0a818c707c7e7247795e55e2471faf (patch) | |
tree | 76aaa8706811945b902b4da0d78906a04dcfb8ec | |
parent | 00f021987e466c67aba3d925a49e2975d0e431b0 (diff) | |
download | hyperkitty-8fb604d53e0a818c707c7e7247795e55e2471faf.tar.gz hyperkitty-8fb604d53e0a818c707c7e7247795e55e2471faf.tar.xz hyperkitty-8fb604d53e0a818c707c7e7247795e55e2471faf.zip |
Moved title = app_name in base.html
-rw-r--r-- | templates/api.html | 2 | ||||
-rw-r--r-- | templates/index.html | 2 | ||||
-rw-r--r-- | templates/month_view.html | 2 | ||||
-rw-r--r-- | templates/recent_activities.html | 2 |
4 files changed, 0 insertions, 8 deletions
diff --git a/templates/api.html b/templates/api.html index fdc78e3..85f3cf0 100644 --- a/templates/api.html +++ b/templates/api.html @@ -1,7 +1,5 @@ {% extends "base.html" %} -{% block title %}{{ app_name }}{% endblock %} - {% block additional_stylesheets %} <link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/thread.css" /> {% endblock %} diff --git a/templates/index.html b/templates/index.html index f63c160..5d1fb39 100644 --- a/templates/index.html +++ b/templates/index.html @@ -1,7 +1,5 @@ {% extends "base.html" %} -{% block title %}{{ app_name }}{% endblock %} - {% block content %} <p> These are the list available on this server: diff --git a/templates/month_view.html b/templates/month_view.html index 7ac3ebe..ba88524 100644 --- a/templates/month_view.html +++ b/templates/month_view.html @@ -2,8 +2,6 @@ {% load poll_extras %} {% load gravatar %} -{% block title %}{{ app_name }}{% endblock %} - {% block content %} <div id="recent_activities"> diff --git a/templates/recent_activities.html b/templates/recent_activities.html index 933e118..787c102 100644 --- a/templates/recent_activities.html +++ b/templates/recent_activities.html @@ -2,8 +2,6 @@ {% load poll_extras %} {% load gravatar %} -{% block title %} {{ app_name }} {% endblock %} - {% block additional_stylesheets %} <link rel="stylesheet" type="text/css" media="all" href="{{ STATIC_URL }}css/stats.css" /> {% endblock %} |