当前状态
在一个站点上,我目前正在使用元素的Menu of subpages of selected pages including abstracts
变体Sitemap
来创建子页面列表:
子页面 1 子页面 1
的摘要子页 2 子页 2
的摘要…
这一切都很好——通过 TypoScript 很容易做到:
lib.somethingsomething = COA
lib.somethingsomething {
...
30 < tt_content.menu.20.4
...
}
期望的状态
我想要的是包含页面图像的摘要(最好是页面上第一张图片的第一张图片tt_content
)。像这样:
子页 1
[IMG-X] 子页 1 的摘要子页 2
[IMG-Y] 子页 2 的摘要…
到目前为止,我发现的是Typo3 MailArchive上带有图像的线程子页面。但是,我没有他们使用的扩展名。但是,我可以看到这只是a类型:DAM
tt_content.menu.20.4
HMENU
TMENU
directory
tt_content.menu.20.4 = HMENU # "Menu of subpages to these pages (with abstract)"
tt_content.menu.20.4 {
1 = TMENU
1 {
target =
NO {
stdWrap.htmlSpecialChars = 1
ATagTitle.field = description // title
linkWrap = <dt>|</dt>
after {
data = field : abstract // field : descr...
required = 1
htmlSpecialChars = 1
wrap = <dd>|</dd>
}
}
noBlur = 1
}
special = directory
special.value.field = pages
wrap = <dl class="csc-menu csc-menu-4">|</dl>
}
有谁知道实现这一目标的方法,无论是扩展,TS 等吗?