Android Friends
For some reason, I like the little Android dude. So, I did some variations on that theme. These are also the first icons I've posted that support Leopard's 512x512 icns size.
Labels: icons

Labels: icons
<title><$BlogPageTitle$>
<?php
// this checks to see if you are on a label page
if(strstr($_SERVER['PHP_SELF'],'/blog/labels/')) {
// this generates the label name
$FilePath = explode("/", $_SERVER['PHP_SELF'] );
$FilePath = array_reverse($FilePath);
$LabelName = explode(".", $FilePath[0]);
echo ": ". $LabelName[0];
}
?>
</title>
Labels: code
<?php
// place this code wherever you need it.
// this checks to see if you are on a label page.
if(strstr($_SERVER['PHP_SELF'],'/blog/labels/')) {
// note the backslashes before the double quotes.
echo "<a href=\"<$BlogURL$>\"><$I18NHome$></a>";
}
?>
Labels: code

Labels: icons