Vulcan/client/views/notification_item.html
2012-10-04 14:54:26 +09:00

20 lines
No EOL
629 B
HTML

<template name="notification_item">
<li>
<span class="notification-timestamp">{{nice_time}}</span>
<p>
{{#if isNewReply}}
{{#with properties}}
<a href="/users/{{commentAuthorId}}">{{commentAuthorName}}</a> has replied to your comment on "<a href='/posts/{{postId}}/comment/{{commentId}}'>{{postHeadline}}</a>".
{{/with}}
{{/if}}
{{#if isNewComment}}
{{#with properties}}
<a href="/users/{{commentAuthorId}}">{{commentAuthorName}}</a> left a new comment on your post "<a href='/posts/{{postId}}/comment/{{commentId}}'>{{postHeadline}}</a>".
{{/with}}
{{/if}}
</p>
</li>
</template>