# HG changeset patch # User Thomas De Schampheleire # Date 1424725898 -3600 # Node ID 3a3ec35466e72de25821fabf4dc3cacb52dae6b5 # Parent 556e98fd06d2b81589e7f7cf96551ca11ae8925c 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. diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/about.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs()"> ${c.site_name} diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/admin/admin.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/admin/auth/auth_settings.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/admin/defaults/defaults.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/admin/gists/edit.html --- 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')} · ${c.gist.gist_access_id} - %if c.site_name: - · ${c.site_name} - %endif <%block name="js_extra"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/admin/gists/index.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/admin/gists/new.html --- 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: - · ${c.site_name} - %endif <%block name="js_extra"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/admin/gists/show.html --- 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')} · ${c.gist.gist_access_id} - %if c.site_name: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/admin/my_account/my_account.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/admin/notifications/notifications.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/admin/notifications/show_notification.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/admin/permissions/permissions.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/admin/repo_groups/repo_group_add.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/admin/repo_groups/repo_group_edit.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/admin/repo_groups/repo_group_show.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/admin/repo_groups/repo_groups.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/admin/repos/repo_add.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/admin/repos/repo_creating.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/admin/repos/repo_edit.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/admin/repos/repos.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/admin/settings/settings.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/admin/user_groups/user_group_add.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> ${h.link_to(_('Admin'),h.url('admin_home'))} diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/admin/user_groups/user_group_edit.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/admin/user_groups/user_groups.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/admin/users/user_add.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> ${h.link_to(_('Admin'),h.url('admin_home'))} diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/admin/users/user_edit.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/admin/users/users.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/base/base.html --- 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: + · ${c.site_name} + %endif + + <%def name="flash_msg()"> <%include file="/base/flash_msg.html"/> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/base/root.html --- 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 @@ - <%block name="title"/> + <%block name="title"/><%block name="branding_title"/> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/bookmarks/bookmarks.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/branches/branches.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/changelog/changelog.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/changeset/changeset.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/changeset/changeset_range.html --- 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])} > ${h.show_id(c.cs_ranges[-1])} - %if c.site_name: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/compare/compare_diff.html --- 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)} > ${'%s@%s' % (c.cs_repo.repo_name, c.cs_ref_name)} %endif - %if c.site_name: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/files/diff_2way.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/files/file_diff.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/files/files.html --- 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'): · ${h.safe_unicode(c.file.path) or '/'} %endif - - %if c.site_name: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/files/files_add.html --- 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: - · ${c.site_name} - %endif <%block name="js_extra"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/files/files_delete.html --- 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: - · ${c.site_name} - %endif <%block name="header_menu"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/files/files_edit.html --- 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: - · ${c.site_name} - %endif <%block name="js_extra"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/followers/followers.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/forks/fork.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/forks/forks.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/index.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/journal/journal.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs()">
diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/journal/public_journal.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs()"> ${c.site_name} diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/login.html --- 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: - · ${c.site_name} - %endif
diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/password_reset.html --- 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: - · ${c.site_name} - %endif
diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/pullrequests/pullrequest_show.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/pullrequests/pullrequest_show_all.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/pullrequests/pullrequest_show_my.html --- 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')} · ${c.site_name} + ${_('My Pull Requests')} <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/register.html --- 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: - · ${c.site_name} - %endif
diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/search/search.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/summary/statistics.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/summary/summary.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()"> diff -r 556e98fd06d2 -r 3a3ec35466e7 kallithea/templates/tags/tags.html --- 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: - · ${c.site_name} - %endif <%def name="breadcrumbs_links()">