2011-04-17 18:19:21 +04:00
|
|
|
<?php foreach($_["breadcrumb"] as $crumb): ?>
|
2011-08-11 01:44:18 +04:00
|
|
|
<div class="crumb svg" data-dir='<?php echo $crumb["dir"];?>' style='background-image:url("<?php echo image_path('core','breadcrumb.png');?>")'>
|
2011-08-19 03:32:24 +04:00
|
|
|
<a href="<?php echo $_['baseURL'].$crumb["dir"]; ?>"><?php echo htmlspecialchars($crumb["name"]); ?></a>
|
2011-07-07 23:43:35 +04:00
|
|
|
</div>
|
2011-08-11 01:44:18 +04:00
|
|
|
<?php endforeach; ?>
|