1234567891011121314151617181920212223242526272829303132 |
- <a class="button" href="#page-newmessage">
- New
- </a>
- <div class="accordion">
- <span class="icons">
- {
- "header": "ui-icon-mail-closed",
- "activeHeader": "ui-icon-mail-open"
- }
- </span>
- {{#each messages}}
- <h3>
- <span style="float:right;">
- <time style="font-size:smaller;" class="timeago">
- {{timestamp}}
- </time>
- </span>
- {{#if is_new}}
- NEW
- {{/if}}
- <a class="button" href="#~{{from}}">
- From: {{from}}
- </a>
- <a class="button" href="#~{{to}}">
- To: {{to}}
- </a>
- </h3>
- <div>
- {{message}}
- </div>
- {{/each}}
- </div>
|