0

我必须使用引导选项卡,然后我想动态生成选项卡链接和选项卡内容。但是每个内容都在一个有机体内部。因为在我的情况下,每个选项卡都变成了来自 Drupal 后端的段落包。不知道有没有办法。如何动态地包含生物体。我不只是没有找到解决这个问题的方法。当然我不能做 if 条件,因为我会有很多案例(标签链接和标签内容)。代码示例。

<section class="tabs ">
     <div class="container">
      <div class="row">
       <div class="col-12">
        <ul class="nav nav-tabs mx-auto position-relative border-bottom-0 flex-column flex-lg-row justify-content-center pb-0 " id="myTab" role="tablist">
          {% for tab in tabs %}
            <li class="nav-item text-center text-lg-left mx-0  pt-1 px-0 pb-0 pt-lg-2">
              {% include '@atoms/anchor/00-anchor-base.twig' with {anchor: tab, stylemodifier: ''  } %}
            </li>
          {% endfor %}
        </ul>
        <div class="tab-content pt-lg-4 pt-2" id="myTabContent">
          {% for tab in tabs %}
            <div class="tab-pane fade  {{ loop.first ? 'show active' }}" id="{{ tab.controls }}" role="tabpanel" aria-labelledby="{{ tab.controls }}-tab">
               {% include '@organisms/block/11-listing.twig' with { } %}
               {# i want the above organism to be dymin , for example it could be "05-organism-thing.twig" #}
            </div>
          {% endfor %}
        </div>
      </div>
    </div>
  </div>
</section>

4

1 回答 1

0

实际上你可以用视图来做到这一点。您只需要根据分类过滤您的内容(选项卡)并创建同一视图的多个块,每个块都基于页面设置下的菜单和路径。更多信息在这里

或者,您可以使用快速选项卡模块。

我希望这会有所帮助。

于 2018-12-16T16:51:08.740 回答