Skip to content

Instantly share code, notes, and snippets.

@makeaweli
Created February 14, 2014 07:19
Show Gist options
  • Save makeaweli/8997034 to your computer and use it in GitHub Desktop.
Save makeaweli/8997034 to your computer and use it in GitHub Desktop.
Yii Breadcrumb Customized For Zurb Foundation
<?php if(isset($this->breadcrumbs)):?>
<?php $this->widget('zii.widgets.CBreadcrumbs', array(
'links'=>$this->breadcrumbs,
'homeLink'=>false,
'tagName'=>'ul',
'activeLinkTemplate'=>'<li><a href="{url}">{label}</a></li>',
'inactiveLinkTemplate'=>'<li class="current"><a href="#">{label}</a></li>',
'separator'=>'',
)); ?><!-- breadcrumbs -->
<?php endif?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment