diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2020-03-22 09:23:07 +0100 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2020-03-22 09:23:07 +0100 |
commit | 573f806676a7ebc2a62aa39d742127fbf74fbb3c (patch) | |
tree | 1c7fc50b116c9a1d2fe6302a1cbe64e8a1d91b94 /src/main/resources/templates/benki/bookmarks/bookmarkList.html | |
parent | 3d399f3e0b150064b778a64ebfd495da2640bb4f (diff) |
Lazychat: Add paging.
Change-Id: I1db0b0733397d5e7a77b925ba185a39a72041f3e
Diffstat (limited to 'src/main/resources/templates/benki/bookmarks/bookmarkList.html')
-rw-r--r-- | src/main/resources/templates/benki/bookmarks/bookmarkList.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/resources/templates/benki/bookmarks/bookmarkList.html b/src/main/resources/templates/benki/bookmarks/bookmarkList.html index 290cb26..8c87a55 100644 --- a/src/main/resources/templates/benki/bookmarks/bookmarkList.html +++ b/src/main/resources/templates/benki/bookmarks/bookmarkList.html @@ -1,4 +1,4 @@ -{@java.util.List<eu.mulk.mulkcms2.benki.bookmarks.Bookmark> bookmarks} +{@java.util.List<eu.mulk.mulkcms2.benki.bookmarks.Bookmark> posts} {@java.lang.Boolean authenticated} {@java.lang.Boolean hasPreviousPage} {@java.lang.Boolean hasNextPage} @@ -38,8 +38,8 @@ </div> <section id="main-content"> - {#for bookmark in bookmarks} - {#with bookmark} + {#for post in posts} + {#with post} <article class="bookmark"> <header> <a href="{uri}"><h1 class="bookmark-title">{title}</h1></a> |