bookmark-pages/Resources/Private/Templates/Bookmark/PersonalList.html
2021-08-20 13:33:13 +02:00

22 lines
556 B
HTML

<html data-namespace-typo3-fluid="true"
xmlns="http://www.w3.org/1999/xhtml" xmlns:f="http://typo3.org/ns/fluid/ViewHelpers">
<f:layout name="Default"/>
<f:section name="main">
<ul>
<f:for each="{bookmarks}" as="bookmark">
<li>
<span><f:link.action action="delete" arguments="{object_uid:bookmark.object_uid, tablename: bookmark.tablename}">[Löschen]</f:link.action></span>
<a href="{bookmark.url}">{bookmark.title}</a>
</li>
</f:for>
</ul>
</f:section>
</html>