зеркало из https://github.com/microsoft/git.git
gitweb: make logo optional
Some sites may not want to have a logo at all. While at it, use $cgi->img to simplify this code. (CGI.pm learned most HTML4 tags by version 2.79, so this should be portable to perl 5.8, though I haven't tested.) Signed-off-by: Jonathan Nieder <jrnieder@gmail.com> Acked-by: Jakub Narebski <jnareb@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Родитель
9d9f5e72dc
Коммит
6822052427
|
@ -3501,10 +3501,15 @@ EOF
|
|||
insert_file($site_header);
|
||||
}
|
||||
|
||||
print "<div class=\"page_header\">\n" .
|
||||
$cgi->a({-href => esc_url($logo_url),
|
||||
-title => $logo_label},
|
||||
qq(<img src=").esc_url($logo).qq(" width="72" height="27" alt="git" class="logo"/>));
|
||||
print "<div class=\"page_header\">\n";
|
||||
if (defined $logo) {
|
||||
print $cgi->a({-href => esc_url($logo_url),
|
||||
-title => $logo_label},
|
||||
$cgi->img({-src => esc_url($logo),
|
||||
-width => 72, -height => 27,
|
||||
-alt => "git",
|
||||
-class => "logo"}));
|
||||
}
|
||||
print $cgi->a({-href => esc_url($home_link)}, $home_link_str) . " / ";
|
||||
if (defined $project) {
|
||||
print $cgi->a({-href => href(action=>"summary")}, esc_html($project));
|
||||
|
|
Загрузка…
Ссылка в новой задаче