app/Plugin/TabaCMS2/Resource/template/default/widget_tag.twig line 1

Open in your IDE?
  1. {#
  2. Copyright (C) SPREAD WORKS Inc. All Rights Reserved.
  3. For the full copyright and license information, please view the LICENSE
  4. file that was distributed with this source code.
  5. #}
  6. <div class="tabacms_widget">
  7.     <h4>タグ</h4>
  8.     <ul class="tabacms_tagcloud_list">
  9.         {% for tag in tag_list %}
  10.             <li><a href="{{ url(type.getListRoutingName) }}?tag_id={{ tag.tagId }}" class="tabacms_tagcloud tabacms_tagcloud_{{ tag.tagCloudLevel }}"> {{ tag.tagName }}</a></li>
  11.         {% endfor %}
  12.     </ul>
  13. </div>