You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bloodhound.apache.org by rj...@apache.org on 2013/02/21 09:36:03 UTC

svn commit: r1448542 - /incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html

Author: rjollos
Date: Thu Feb 21 08:36:03 2013
New Revision: 1448542

URL: http://svn.apache.org/r1448542
Log:
Fixes #410: Navigate to `base_url` if the user clicks on the Bloodhound logo in the header, or `[header_logo]` `link` if specified.

Modified:
    incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html

Modified: incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html
URL: http://svn.apache.org/viewvc/incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html?rev=1448542&r1=1448541&r2=1448542&view=diff
==============================================================================
--- incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html (original)
+++ incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html Thu Feb 21 08:36:03 2013
@@ -65,8 +65,10 @@
           <!--! logo -->
           <div id="logo" class="span4">
             <p>
-              <img src="${chrome.logo.src or href.chrome('theme/img/bh_logo.png')}"
-                  alt="Bloodhound Logo" />
+              <a href="${chrome.logo.link or href()}">
+                <img src="${chrome.logo.src or href.chrome('theme/img/bh_logo.png')}"
+                     alt="Bloodhound Logo" />
+              </a>
             </p>
           </div>
           <!--! top menu (login, logout...) -->