Skip to content

Instantly share code, notes, and snippets.

@makeaweli
makeaweli / .bash
Created July 28, 2015 06:57
Configure vagrant shared folder to allow web server to assume ownership of Wordpress
cd ~/Sites/lamp && curl -OL "https://www.dropbox.com/s/hpkrjmaea9b0eiw/Vagrantfile" && Vagrant reload
@makeaweli
makeaweli / gist:8997034
Created February 14, 2014 07:19
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?>