blob: ecac7a702405faf95092a95744ecfb6d50797338 [file] [log] [blame]
Matthias Andreas Benkard94b5e7b2020-02-09 20:02:20 +01001{@java.util.List<eu.mulk.mulkcms2.benki.lazychat.LazychatMessage> lazychatMessages}
2
3{#include base.html}
4
5{#title}Benki Lazychat{/title}
6{#siteSection}Lazychat{/siteSection}
7{#lazychatClass}this-page{/lazychatClass}
8
9{#head}{/head}
10
11{#body}
12
13{#for lazychatMessage in lazychatMessages}
14 {#with lazychatMessage}
15 <article class="lazychat-message">
16 <header>
17 <div class="lazychat-message-info">
18 <time datetime="{date.htmlDateTime}">{date.humanDateTime}</time>
19 <span class="lazychat-message-owner">{owner.firstName} {owner.lastName}</span>
20 </div>
21 </header>
22
23 <section class="lazychat-message-content">
24 {contentHtml.raw}
25 </section>
26 </article>
27 {/with}
28{/for}
29
30{/body}
31
32{/include}