.breadcrumb a:last-child{
text-decoration: none;
border-bottom:none;
color: rgba(0, 0, 0, 0.3);}
function getList($array, $parent_id="unset") {
$list = "<ul>";
foreach ($array as $key => $arr) {
if( ($parent_id=="unset" and $arr[1]==null) OR $arr[1]==$parent_id ) {
unset($array[$key]);
$list.= "<li>";
$list.= $arr[2].getList($array, $arr[0]);
$list.= "</li>";
}
}
$list.= "</ul>";
return $list;
}