2011-10-21 21:30:12 +00:00
|
|
|
<?php for($i=0; $i<count($_["breadcrumb"]); $i++):
|
2011-10-21 17:09:41 +00:00
|
|
|
$crumb = $_["breadcrumb"][$i]; ?>
|
2012-05-06 21:00:36 +00:00
|
|
|
<div class="crumb <?php if($i == count($_["breadcrumb"])-1) echo 'last';?> svg" data-dir='<?php echo $crumb["dir"];?>' style='background-image:url("<?php echo OCP\image_path('core','breadcrumb.png');?>")'>
|
2012-06-21 08:28:43 +00:00
|
|
|
<a href="<?php echo $_['baseURL'].$crumb["dir"]; ?>"><?php echo OCP\Util::sanitizeHTML($crumb["name"]); ?></a>
|
2011-07-07 19:43:35 +00:00
|
|
|
</div>
|
2012-05-10 09:10:53 +00:00
|
|
|
<?php endfor;?>
|