getTextを使用して、各グローバルタブに基づいて異なるhtmlページをロードしようとしています(各タブは異なるhtmlページをロードします)。異なるテキストごとに特定のタブを指定するコードを知っている人はいますか? 以下のコードは、同じテキストをすべてのタブにロードします。
<div class="col_3" metal:define-macro="highlights" i18n:domain="plone">
<h2>Highlights</h2>
<p>
<tal:block tal:condition= "exists:here/graduate-study/highlghts-grad"
tal:replace="structure here/graduate-study/highlghts-grad/getText">Footer content here</tal:block>
</p>
</div>
<div class="col_3" metal:define-macro="highlights" i18n:domain="plone">
<h2>Highlights</h2>
<p>
<tal:block tal:condition= "exists:here/undergraduate-study/highlghts-grad"
tal:replace="structure here/undergraduate-study/highlghts-grad/getText">Footer content here</tal:block>
</p>
</div>
など、すべてのタブで...