app/Plugin/TabaCMS2/Resource/template/default/widget_category.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_category_list">
  9.         <li><a href="{{ url(type.getListRoutingName) }}">すべて</a></li>
  10.         {% for category in category_list %}
  11.             <li><a href="{{ url(category.getRoutingName,{category_id:category.getCategoryId}) }}"> {{ category.getCategoryName }} ({{ category.getPostCount|default(0)|number_format }})</a></li>
  12.         {% endfor %}
  13.     </ul>
  14. </div>