Merge branch 'link-filter-26' into next
[Sone.git] / src / main / resources / templates / bookmarks.html
1 <%include include/head.html>
2
3         <div class="page-id hidden">bookmarks</div>
4
5         <h1><%= Page.Bookmarks.Page.Title|l10n|html></h1>
6
7         <div id="posts">
8                 <%= page|store key=pageParameter>
9                 <%include include/pagination.html>
10                 <%foreach posts post>
11                         <%include include/viewPost.html>
12                 <%/foreach>
13                 <%include include/pagination.html>
14                 <%if postsNotLoaded>
15                         <p><%= Page.Bookmarks.Text.PostsNotLoaded|l10n|html|replace needle='{link}' replacement='<a href="unbookmark.html?post=allNotLoaded">'|replace needle='{/link}' replacement='</a>'></p>
16                 <%elseif posts.empty>
17                         <p><%= Page.Bookmarks.Text.NoBookmarks|l10n|html></p>
18                 <%/if>
19         </div>
20
21 <%include include/tail.html>