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