comparison kallithea/templates/summary/summary.html @ 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 4aa02271dc13
children ecbb597c336c
comparison
equal deleted inserted replaced
4844:556e98fd06d2 4845:3a3ec35466e7
1 <%inherit file="/base/base.html"/> 1 <%inherit file="/base/base.html"/>
2 2
3 <%block name="title"> 3 <%block name="title">
4 ${_('%s Summary') % c.repo_name} 4 ${_('%s Summary') % c.repo_name}
5 %if c.site_name:
6 &middot; ${c.site_name}
7 %endif
8 </%block> 5 </%block>
9 6
10 <%def name="breadcrumbs_links()"> 7 <%def name="breadcrumbs_links()">
11 ${_('Summary')} 8 ${_('Summary')}
12 9