Author: marrs
Date: Wed Feb 8 21:21:19 2012
New Revision: 1242103
URL: http://svn.apache.org/viewvc?rev=1242103&view=rev
Log:
Trying out new breadcrumb code.
Modified:
ace/site/trunk/lib/view.pm
Modified: ace/site/trunk/lib/view.pm
URL: http://svn.apache.org/viewvc/ace/site/trunk/lib/view.pm?rev=1242103&r1=1242102&r2=1242103&view=diff
==============================================================================
--- ace/site/trunk/lib/view.pm (original)
+++ ace/site/trunk/lib/view.pm Wed Feb 8 21:21:19 2012
@@ -166,7 +166,7 @@ sub breadcrumbs {
my $relpath = "";
for (@path) {
$relpath .= "$_/";
- $_ ||= "Home";
+ $_ ||= "<i class='icon-home'></i> Home";
push @rv, qq(<a href="$relpath">\u$_</a>);
}
return join " » ", @rv;
|