我必须使用引导选项卡,然后我想动态生成选项卡链接和选项卡内容。但是每个内容都在一个有机体内部。因为在我的情况下,每个选项卡都变成了来自 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>