V2_Topicpath


{% set topicpath = module('V2_Topicpath', null, {
  bid: null,
  cid: null,
  eid: null,
}) %}

{% if topicpath.items is not empty %}
  <div>
    {{ include('/admin/module/setting.twig', { moduleInfo: topicpath.moduleInfo }) }}
    <ol class="acms-topicpath acms-margin-bottom-mini clearfix" aria-label="トピックパス">
      {% for item in topicpath.items %}
        <li>
          <a href="{{ item.url }}">{{ item.name }}</a>
        </li>
      {% endfor %}
    </ol>
  </div>
{% endif %}