changeset 4845:3a3ec35466e7

templates: move site branding in page title to base template Instead of repeating the same three lines in each and every template, move it to the base template.
author Thomas De Schampheleire <thomas.de_schampheleire@alcatel-lucent.com>
date Mon, 23 Feb 2015 22:11:38 +0100
parents 556e98fd06d2
children 4fbab9d5be4d
files kallithea/templates/about.html kallithea/templates/admin/admin.html kallithea/templates/admin/auth/auth_settings.html kallithea/templates/admin/defaults/defaults.html kallithea/templates/admin/gists/edit.html kallithea/templates/admin/gists/index.html kallithea/templates/admin/gists/new.html kallithea/templates/admin/gists/show.html kallithea/templates/admin/my_account/my_account.html kallithea/templates/admin/notifications/notifications.html kallithea/templates/admin/notifications/show_notification.html kallithea/templates/admin/permissions/permissions.html kallithea/templates/admin/repo_groups/repo_group_add.html kallithea/templates/admin/repo_groups/repo_group_edit.html kallithea/templates/admin/repo_groups/repo_group_show.html kallithea/templates/admin/repo_groups/repo_groups.html kallithea/templates/admin/repos/repo_add.html kallithea/templates/admin/repos/repo_creating.html kallithea/templates/admin/repos/repo_edit.html kallithea/templates/admin/repos/repos.html kallithea/templates/admin/settings/settings.html kallithea/templates/admin/user_groups/user_group_add.html kallithea/templates/admin/user_groups/user_group_edit.html kallithea/templates/admin/user_groups/user_groups.html kallithea/templates/admin/users/user_add.html kallithea/templates/admin/users/user_edit.html kallithea/templates/admin/users/users.html kallithea/templates/base/base.html kallithea/templates/base/root.html kallithea/templates/bookmarks/bookmarks.html kallithea/templates/branches/branches.html kallithea/templates/changelog/changelog.html kallithea/templates/changeset/changeset.html kallithea/templates/changeset/changeset_range.html kallithea/templates/compare/compare_diff.html kallithea/templates/files/diff_2way.html kallithea/templates/files/file_diff.html kallithea/templates/files/files.html kallithea/templates/files/files_add.html kallithea/templates/files/files_delete.html kallithea/templates/files/files_edit.html kallithea/templates/followers/followers.html kallithea/templates/forks/fork.html kallithea/templates/forks/forks.html kallithea/templates/index.html kallithea/templates/journal/journal.html kallithea/templates/journal/public_journal.html kallithea/templates/login.html kallithea/templates/password_reset.html kallithea/templates/pullrequests/pullrequest_show.html kallithea/templates/pullrequests/pullrequest_show_all.html kallithea/templates/pullrequests/pullrequest_show_my.html kallithea/templates/register.html kallithea/templates/search/search.html kallithea/templates/summary/statistics.html kallithea/templates/summary/summary.html kallithea/templates/tags/tags.html
diffstat 57 files changed, 8 insertions(+), 165 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/templates/about.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/about.html	Mon Feb 23 22:11:38 2015 +0100
@@ -2,9 +2,6 @@
 <%inherit file="/base/base.html"/>
 <%block name="title">
     ${_('About')}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 <%def name="breadcrumbs()">
     ${c.site_name}
--- a/kallithea/templates/admin/admin.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/admin/admin.html	Mon Feb 23 22:11:38 2015 +0100
@@ -3,9 +3,6 @@
 
 <%block name="title">
     ${_('Admin Journal')}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/admin/auth/auth_settings.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/admin/auth/auth_settings.html	Mon Feb 23 22:11:38 2015 +0100
@@ -3,9 +3,6 @@
 
 <%block name="title">
     ${_('Authentication Settings')}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/admin/defaults/defaults.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/admin/defaults/defaults.html	Mon Feb 23 22:11:38 2015 +0100
@@ -3,9 +3,6 @@
 
 <%block name="title">
     ${_('Repository Defaults')}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/admin/gists/edit.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/admin/gists/edit.html	Mon Feb 23 22:11:38 2015 +0100
@@ -3,9 +3,6 @@
 
 <%block name="title">
     ${_('Edit Gist')} &middot; ${c.gist.gist_access_id}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%block name="js_extra">
--- a/kallithea/templates/admin/gists/index.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/admin/gists/index.html	Mon Feb 23 22:11:38 2015 +0100
@@ -9,9 +9,6 @@
     %else:
         ${_('Public Gists')}
     %endif
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/admin/gists/new.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/admin/gists/new.html	Mon Feb 23 22:11:38 2015 +0100
@@ -3,9 +3,6 @@
 
 <%block name="title">
     ${_('New Gist')}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%block name="js_extra">
--- a/kallithea/templates/admin/gists/show.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/admin/gists/show.html	Mon Feb 23 22:11:38 2015 +0100
@@ -3,9 +3,6 @@
 
 <%block name="title">
     ${_('Gist')} &middot; ${c.gist.gist_access_id}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/admin/my_account/my_account.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/admin/my_account/my_account.html	Mon Feb 23 22:11:38 2015 +0100
@@ -3,9 +3,6 @@
 
 <%block name="title">
     ${_('My Account')} ${c.authuser.username}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/admin/notifications/notifications.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/admin/notifications/notifications.html	Mon Feb 23 22:11:38 2015 +0100
@@ -3,9 +3,6 @@
 
 <%block name="title">
     ${_('My Notifications')} ${c.authuser.username}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/admin/notifications/show_notification.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/admin/notifications/show_notification.html	Mon Feb 23 22:11:38 2015 +0100
@@ -3,9 +3,6 @@
 
 <%block name="title">
     ${_('Show Notification')} ${c.authuser.username}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/admin/permissions/permissions.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/admin/permissions/permissions.html	Mon Feb 23 22:11:38 2015 +0100
@@ -3,9 +3,6 @@
 
 <%block name="title">
     ${_('Permissions Administration')}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/admin/repo_groups/repo_group_add.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/admin/repo_groups/repo_group_add.html	Mon Feb 23 22:11:38 2015 +0100
@@ -3,9 +3,6 @@
 
 <%block name="title">
     ${_('Add Repository Group')}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/admin/repo_groups/repo_group_edit.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/admin/repo_groups/repo_group_edit.html	Mon Feb 23 22:11:38 2015 +0100
@@ -3,9 +3,6 @@
 
 <%block name="title">
     ${_('%s Repository Group Settings') % c.repo_group.name}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/admin/repo_groups/repo_group_show.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/admin/repo_groups/repo_group_show.html	Mon Feb 23 22:11:38 2015 +0100
@@ -2,9 +2,6 @@
 <%inherit file="/base/base.html"/>
 <%block name="title">
     ${_('%s Repository group dashboard') % c.group.group_name}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs()">
--- a/kallithea/templates/admin/repo_groups/repo_groups.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/admin/repo_groups/repo_groups.html	Mon Feb 23 22:11:38 2015 +0100
@@ -3,9 +3,6 @@
 
 <%block name="title">
     ${_('Repository Groups Administration')}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/admin/repos/repo_add.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/admin/repos/repo_add.html	Mon Feb 23 22:11:38 2015 +0100
@@ -3,9 +3,6 @@
 
 <%block name="title">
     ${_('Add Repository')}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/admin/repos/repo_creating.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/admin/repos/repo_creating.html	Mon Feb 23 22:11:38 2015 +0100
@@ -7,9 +7,6 @@
 
 <%block name="title">
     ${_('%s Creating Repository') % c.repo_name}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/admin/repos/repo_edit.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/admin/repos/repo_edit.html	Mon Feb 23 22:11:38 2015 +0100
@@ -6,9 +6,6 @@
 
 <%block name="title">
     ${_('%s Repository Settings') % c.repo_info.repo_name}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/admin/repos/repos.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/admin/repos/repos.html	Mon Feb 23 22:11:38 2015 +0100
@@ -3,9 +3,6 @@
 
 <%block name="title">
     ${_('Repositories Administration')}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/admin/settings/settings.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/admin/settings/settings.html	Mon Feb 23 22:11:38 2015 +0100
@@ -3,9 +3,6 @@
 
 <%block name="title">
     ${_('Settings Administration')}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/admin/user_groups/user_group_add.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/admin/user_groups/user_group_add.html	Mon Feb 23 22:11:38 2015 +0100
@@ -3,9 +3,6 @@
 
 <%block name="title">
     ${_('Add user group')}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 <%def name="breadcrumbs_links()">
     ${h.link_to(_('Admin'),h.url('admin_home'))}
--- a/kallithea/templates/admin/user_groups/user_group_edit.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/admin/user_groups/user_group_edit.html	Mon Feb 23 22:11:38 2015 +0100
@@ -3,9 +3,6 @@
 
 <%block name="title">
     ${_('%s user group settings') % c.user_group.users_group_name}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/admin/user_groups/user_groups.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/admin/user_groups/user_groups.html	Mon Feb 23 22:11:38 2015 +0100
@@ -3,9 +3,6 @@
 
 <%block name="title">
     ${_('User Groups Administration')}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/admin/users/user_add.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/admin/users/user_add.html	Mon Feb 23 22:11:38 2015 +0100
@@ -3,9 +3,6 @@
 
 <%block name="title">
     ${_('Add user')}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 <%def name="breadcrumbs_links()">
     ${h.link_to(_('Admin'),h.url('admin_home'))}
--- a/kallithea/templates/admin/users/user_edit.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/admin/users/user_edit.html	Mon Feb 23 22:11:38 2015 +0100
@@ -3,9 +3,6 @@
 
 <%block name="title">
     ${_('%s user settings') % c.user.username}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/admin/users/users.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/admin/users/users.html	Mon Feb 23 22:11:38 2015 +0100
@@ -3,9 +3,6 @@
 
 <%block name="title">
     ${_('Users Administration')}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/base/base.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/base/base.html	Mon Feb 23 22:11:38 2015 +0100
@@ -38,6 +38,12 @@
 
 ### MAKO DEFS ###
 
+<%block name="branding_title">
+    %if c.site_name:
+    &middot; ${c.site_name}
+    %endif
+</%block>
+
 <%def name="flash_msg()">
     <%include file="/base/flash_msg.html"/>
 </%def>
--- a/kallithea/templates/base/root.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/base/root.html	Mon Feb 23 22:11:38 2015 +0100
@@ -2,7 +2,7 @@
 <!DOCTYPE html>
 <html xmlns="http://www.w3.org/1999/xhtml">
     <head>
-        <title><%block name="title"/></title>
+        <title><%block name="title"/><%block name="branding_title"/></title>
         <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
         <meta name="robots" content="index, nofollow"/>
         <link rel="icon" href="${h.url('/images/favicon.ico')}" type="image/png" />
--- a/kallithea/templates/bookmarks/bookmarks.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/bookmarks/bookmarks.html	Mon Feb 23 22:11:38 2015 +0100
@@ -3,9 +3,6 @@
 
 <%block name="title">
     ${_('%s Bookmarks') % c.repo_name}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/branches/branches.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/branches/branches.html	Mon Feb 23 22:11:38 2015 +0100
@@ -3,9 +3,6 @@
 
 <%block name="title">
     ${_('%s Branches') % c.repo_name}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/changelog/changelog.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/changelog/changelog.html	Mon Feb 23 22:11:38 2015 +0100
@@ -7,9 +7,6 @@
     %if c.changelog_for_path:
       /${c.changelog_for_path}
     %endif
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/changeset/changeset.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/changeset/changeset.html	Mon Feb 23 22:11:38 2015 +0100
@@ -6,9 +6,6 @@
 
 <%block name="title">
     ${_('%s Changeset') % c.repo_name} - ${h.show_id(c.changeset)}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/changeset/changeset_range.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/changeset/changeset_range.html	Mon Feb 23 22:11:38 2015 +0100
@@ -3,9 +3,6 @@
 
 <%block name="title">
     ${_('%s Changesets') % c.repo_name} - ${h.show_id(c.cs_ranges[0])} &gt; ${h.show_id(c.cs_ranges[-1])}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/compare/compare_diff.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/compare/compare_diff.html	Mon Feb 23 22:11:38 2015 +0100
@@ -7,9 +7,6 @@
     %else:
         ${_('%s Compare') % c.repo_name} - ${'%s@%s' % (c.a_repo.repo_name, c.a_ref_name)} &gt; ${'%s@%s' % (c.cs_repo.repo_name, c.cs_ref_name)}
     %endif
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/files/diff_2way.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/files/diff_2way.html	Mon Feb 23 22:11:38 2015 +0100
@@ -13,9 +13,6 @@
 
 <%block name="title">
     ${_('%s File side-by-side diff') % c.repo_name}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/files/file_diff.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/files/file_diff.html	Mon Feb 23 22:11:38 2015 +0100
@@ -2,9 +2,6 @@
 
 <%block name="title">
     ${_('%s File Diff') % c.repo_name}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/files/files.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/files/files.html	Mon Feb 23 22:11:38 2015 +0100
@@ -5,10 +5,6 @@
     %if hasattr(c,'file'):
         &middot; ${h.safe_unicode(c.file.path) or '/'}
     %endif
-
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/files/files_add.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/files/files_add.html	Mon Feb 23 22:11:38 2015 +0100
@@ -2,9 +2,6 @@
 
 <%block name="title">
     ${_('%s Files Add') % c.repo_name}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%block name="js_extra">
--- a/kallithea/templates/files/files_delete.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/files/files_delete.html	Mon Feb 23 22:11:38 2015 +0100
@@ -2,9 +2,6 @@
 
 <%block name="title">
     ${_('%s Files Delete') % c.repo_name}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%block name="header_menu">
--- a/kallithea/templates/files/files_edit.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/files/files_edit.html	Mon Feb 23 22:11:38 2015 +0100
@@ -2,9 +2,6 @@
 
 <%block name="title">
     ${_('%s File Edit') % c.repo_name}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%block name="js_extra">
--- a/kallithea/templates/followers/followers.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/followers/followers.html	Mon Feb 23 22:11:38 2015 +0100
@@ -3,9 +3,6 @@
 
 <%block name="title">
     ${_('%s Followers') % c.repo_name}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/forks/fork.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/forks/fork.html	Mon Feb 23 22:11:38 2015 +0100
@@ -3,9 +3,6 @@
 
 <%block name="title">
     ${_('Fork repository %s') % c.repo_name}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/forks/forks.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/forks/forks.html	Mon Feb 23 22:11:38 2015 +0100
@@ -3,9 +3,6 @@
 
 <%block name="title">
     ${_('%s Forks') % c.repo_name}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/index.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/index.html	Mon Feb 23 22:11:38 2015 +0100
@@ -3,9 +3,6 @@
 
 <%block name="title">
     ${_('Dashboard')}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs()">
--- a/kallithea/templates/journal/journal.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/journal/journal.html	Mon Feb 23 22:11:38 2015 +0100
@@ -2,9 +2,6 @@
 <%inherit file="/base/base.html"/>
 <%block name="title">
     ${_('Journal')}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 <%def name="breadcrumbs()">
     <h5>
--- a/kallithea/templates/journal/public_journal.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/journal/public_journal.html	Mon Feb 23 22:11:38 2015 +0100
@@ -2,9 +2,6 @@
 <%inherit file="/base/base.html"/>
 <%block name="title">
     ${_('Public Journal')}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 <%def name="breadcrumbs()">
     ${c.site_name}
--- a/kallithea/templates/login.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/login.html	Mon Feb 23 22:11:38 2015 +0100
@@ -3,9 +3,6 @@
 
 <%block name="title">
     ${_('Log In')}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <div id="login">
--- a/kallithea/templates/password_reset.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/password_reset.html	Mon Feb 23 22:11:38 2015 +0100
@@ -3,9 +3,6 @@
 
 <%block name="title">
     ${_('Password Reset')}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <div id="register">
--- a/kallithea/templates/pullrequests/pullrequest_show.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/pullrequests/pullrequest_show.html	Mon Feb 23 22:11:38 2015 +0100
@@ -4,9 +4,6 @@
 
 <%block name="title">
     ${_('%s Pull Request #%s') % (c.repo_name, c.pull_request.pull_request_id)}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/pullrequests/pullrequest_show_all.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/pullrequests/pullrequest_show_all.html	Mon Feb 23 22:11:38 2015 +0100
@@ -2,9 +2,6 @@
 
 <%block name="title">
     ${_('%s Pull Requests') % c.repo_name}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/pullrequests/pullrequest_show_my.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/pullrequests/pullrequest_show_my.html	Mon Feb 23 22:11:38 2015 +0100
@@ -1,7 +1,7 @@
 <%inherit file="/base/base.html"/>
 
 <%block name="title">
-    ${_('My Pull Requests')} &middot; ${c.site_name}
+    ${_('My Pull Requests')}
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/register.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/register.html	Mon Feb 23 22:11:38 2015 +0100
@@ -3,9 +3,6 @@
 
 <%block name="title">
     ${_('Sign Up')}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <div id="register">
--- a/kallithea/templates/search/search.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/search/search.html	Mon Feb 23 22:11:38 2015 +0100
@@ -7,9 +7,6 @@
     %else:
         ${_('Search in All Repositories')}
     %endif
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/summary/statistics.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/summary/statistics.html	Mon Feb 23 22:11:38 2015 +0100
@@ -2,9 +2,6 @@
 
 <%block name="title">
     ${_('%s Statistics') % c.repo_name}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/summary/summary.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/summary/summary.html	Mon Feb 23 22:11:38 2015 +0100
@@ -2,9 +2,6 @@
 
 <%block name="title">
     ${_('%s Summary') % c.repo_name}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">
--- a/kallithea/templates/tags/tags.html	Mon Feb 23 21:43:45 2015 +0100
+++ b/kallithea/templates/tags/tags.html	Mon Feb 23 22:11:38 2015 +0100
@@ -3,9 +3,6 @@
 
 <%block name="title">
     ${_('%s Tags') % c.repo_name}
-    %if c.site_name:
-        &middot; ${c.site_name}
-    %endif
 </%block>
 
 <%def name="breadcrumbs_links()">