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