Bootstrap glyphicon符号没有出现在CakePhp中

时间:2014-04-30 06:00:51

标签: twitter-bootstrap-3 cakephp-2.0 carousel

我正在尝试使用glyphicon滑块中的引导程序carousel来实现右/左箭头。该项目位于CakePhp

我需要实现这个:

<a class="right carousel-control" href="#myCarousel" data-slide="next"><span class="glyphicon` glyphicon-chevron-right"></span></a>

所以我写道:

<?php
      echo $this->Html->link(
      $this->Html->tag('span', '', array('class' => 'glyphicon glyphicon-chevron-right')) . "",
      array('controller' => '#myCarousel'),
      array('class' => 'right carousel-control', 'data-slide'=>'next', 'escape' => false)
  );
  ?>

但符号没有出现,而是出现了一些代码!怎么了?

网站链接:LINK TO WEBSITE

1 个答案:

答案 0 :(得分:4)

这个问题的答案在于评论。这里正式将这些评论作为答案 -

图标无效,因为提问者忘记上传包含fonts的{​​{1}}文件夹。