14 lines
538 B
PHTML
14 lines
538 B
PHTML
<!--当前定位-->
|
|
<?php if(!empty($this->nav)){ ?>
|
|
<div class="container">
|
|
<div class="col-md-9 col-sm-8 location">
|
|
<div class="fixTab">
|
|
<img src="/static-sanjy-np/img/address.png" alt="" />
|
|
<?php foreach ($this->nav as $k=>$v){?>
|
|
<a href="<?= $v['link'] ?>"><?= $v['title']?></a>
|
|
<?php if(isset($this->nav[$k+1])) {?> <span>/</span> <?php } ?>
|
|
<?php } ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php } ?> |