blob: 4ad97fda9d5d3167ac834eb4ca39ed2a005e9bc1 [file] [log] [blame]
Matthias Andreas Benkard2d4f92e2020-02-09 16:15:07 +01001{@java.util.List<eu.mulk.mulkcms2.benki.bookmarks.Bookmark> bookmarks}
2
3{#include base.html}
4
5{#title}Benki Bookmarks{/title}
6{#siteSection}Bookmarks{/siteSection}
7{#bookmarksClass}this-page{/bookmarksClass}
8
9{#head}{/head}
10
11{#body}
12
13{#for bookmark in bookmarks}
14 {#with bookmark}
15 <article class="bookmark">
16 <header>
17 <a href="{uri}"><h1 class="bookmark-title">{title}</h1></a>
18 <div>
19 <time datetime="{date.htmlDateTime}">{date.humanDateTime}</time>
20 <span class="bookmark-owner">{owner.firstName} {owner.lastName}</span>
21 </div>
22 </header>
23
24 <section class="bookmark-description">
25 {description}
26 </section>
27 </article>
28 {/with}
29{/for}
30
31{/body}
32
33{/include}