How to create link make cakephp with twitter bootstrap -


example:

<a class="btn btn-mini" href="#"><i class="icon-star"></i> star</a> 

i try html::helpers

echo $this->html->link($this->html->tag('i','',      array('class' => 'btn')), array('action' => '../link'));  

but not work !

try:

echo $this->html->link(     $this->html->tag('i', '', array('class' => 'icon-star')) . " star",     array('action' => 'your_action'),     array('class' => 'btn btn-mini', 'escape' => false) ); 

Comments

Popular posts from this blog

java - activate/deactivate sonar maven plugin by profile? -

python - TypeError: can only concatenate tuple (not "float") to tuple -

java - What is the difference between String. and String.this. ? -