app/PluginData/TabaCMS2/template/airconwork/widget_category_glossary.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. {% for category in category_list %}
  7. {% if options.cat=='menu' %}
  8. <li><a href="#{{ category.getDataKey }}">{{ category.getCategoryName }}</a></li>
  9. {% endif %}
  10. {% if options.cat=='menu-page' %}
  11. <li><a href="{{ type.getListURI }}#{{ category.getDataKey }}">{{ category.getCategoryName }}</a></li>
  12. {% endif %}
  13. {% if options.cat=='list' %}
  14. {% set post_cat = category.getCategoryId %}
  15. <div id="{{ category.getDataKey }}" class="c-section">
  16. <h2 class="c-title-08"><span class="s-text">{{ category.getCategoryName }}</span></h2>
  17. <ul class="c-page-menu-04">
  18. {{ TabaCMSWidget('list',{type_data_key:'glossary',cat:post_cat})|raw }}
  19. </ul>
  20. </div>
  21. {% endif %}
  22. {% endfor %}