X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=gitweb%2Fgitweb.perl;h=4f0c3bd90c7f90dad1674f50999da534c33c0261;hb=23838b8a152a6363e22fdbe3f474fab904f701b3;hp=a95226e089fa22d7041e4374382bb2709da10df1;hpb=7b51c33b376d22195dba1c4e067180164fd35dbf;p=git.git diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index a95226e08..4f0c3bd90 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -85,6 +85,8 @@ our $home_link_str = "++GITWEB_HOME_LINK_STR++"; our $site_name = "++GITWEB_SITENAME++" || ($ENV{'SERVER_NAME'} || "Untitled") . " Git"; +# html snippet to include in the section of each page +our $site_html_head_string = "++GITWEB_SITE_HTML_HEAD_STRING++"; # filename of html text to include at top of each page our $site_header = "++GITWEB_SITE_HEADER++"; # html text to include at home page @@ -3879,6 +3881,11 @@ EOF print "\n"; } print_header_links($status); + + if (defined $site_html_head_string) { + print to_utf8($site_html_head_string); + } + print "\n" . "\n";