2011-10-22 01:30:12 +04:00
|
|
|
<?php for($i=0; $i<count($_["breadcrumb"]); $i++):
|
2011-10-21 21:09:41 +04:00
|
|
|
$crumb = $_["breadcrumb"][$i]; ?>
|
2012-05-07 01:00:36 +04: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 12:28:43 +04:00
|
|
|
<a href="<?php echo $_['baseURL'].$crumb["dir"]; ?>"><?php echo OCP\Util::sanitizeHTML($crumb["name"]); ?></a>
|
2011-07-07 23:43:35 +04:00
|
|
|
</div>
|
2012-05-10 13:10:53 +04:00
|
|
|
<?php endfor;?>
|