blob: 0d392c80b8c0df7d328a4e0ef10064380c7c5cad [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>
Matthias Andreas Benkard424e16e2020-02-09 18:29:56 +010018 <div class="bookmark-info">
Matthias Andreas Benkard2d4f92e2020-02-09 16:15:07 +010019 <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">
Matthias Andreas Benkard424e16e2020-02-09 18:29:56 +010025 {descriptionHtml.raw}
Matthias Andreas Benkard2d4f92e2020-02-09 16:15:07 +010026 </section>
27 </article>
28 {/with}
29{/for}
30
31{/body}
32
33{/include}