Add page that shows all bookmarks.
[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                 <%include include/pagination.html>
9                 <%foreach posts post>
10                         <%include include/viewPost.html>
11                 <%foreachelse>
12                         <p><%= Page.Bookmarks.Text.NoBookmarks|l10n|html></p>
13                 <%/foreach>
14                 <%include include/pagination.html>
15         </div>
16
17 <%include include/tail.html>