If you wanted the FONT tags (which I wouldn't recommend keeping) and excluded from the home page you could try this...
Code:
{if $location.1 neq ""}
<font class="NavigationPath">
{strip}
{section name=position loop=$location start=1}
{if $location[position].1 ne "" }<a href="{$location[position].1|amp}" class="NavigationPath">{/if}
{$location[position].0}
{if $location[position].1 ne "" }</a>{/if}
{if not %position.last%} > {/if}
{/section}
{/strip}
</font>
{/if}
Hope this helps.
========================
Edit: Changed from {if $location and $location.1 neq ""} to {if $location.1 neq ""}