Vulcan/client/views/notifications/notification_item.html

25 lines
825 B
HTML
Raw Normal View History

2012-10-04 13:30:57 +09:00
<template name="notification_item">
<li class="{{#if read}}read{{/if}}">
2012-10-04 13:30:57 +09:00
<span class="notification-timestamp">{{nice_time}}</span>
<p>
2012-10-04 14:54:26 +09:00
{{#if isNewReply}}
2012-10-04 13:30:57 +09:00
{{#with properties}}
<a href="/users/{{commentAuthorId}}">{{commentAuthorName}}</a> has replied to your comment on "<a href="/posts/{{postId}}/comment/{{commentId}}" class="action-link">{{postHeadline}}</a>".
2012-10-04 13:30:57 +09:00
{{/with}}
{{/if}}
2012-10-04 14:54:26 +09:00
{{#if isNewComment}}
2012-10-04 13:30:57 +09:00
{{#with properties}}
<a href="/users/{{commentAuthorId}}">{{commentAuthorName}}</a> left a new comment on your post "<a href="/posts/{{postId}}/comment/{{commentId}}" class="action-link">{{postHeadline}}</a>".
2012-10-04 13:30:57 +09:00
{{/with}}
{{/if}}
2012-10-04 14:54:26 +09:00
{{#if isMessage}}
{{#with properties}}
<a href="#" class="action-link">{{message}}</a>
{{/with}}
{{/if}}
2012-10-04 13:30:57 +09:00
</p>
</li>
</template>