Zwischenstand

This commit is contained in:
Sven Wappler
2021-08-20 13:33:13 +02:00
parent ce6b9e38dc
commit 508d3d2759
32 changed files with 2807 additions and 602 deletions

View File

@@ -0,0 +1,21 @@
<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>