123456789101112131415161718192021222324 |
- <h3>
- {{title}} - <a style="font-size:small;color:gray;text-decoration:none;" href="#~{{user.name}}">{{user.name}}</a>
- </h3>
- <div>
- {{description}}
- </div>
- <h4>
- Comments
- </h4>
- <ul>
- {{#each comments}}
- <li>
- <a style="font-size:small;color:gray;text-decoration:none;" href="#~{{name}}">
- {{name}}
- </a>
- <time class="timeago">
- {{timestamp}}
- </time>
- <div>
- {{message}}
- </div>
- </li>
- {{/each}}
- </ul>
|