mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
20 lines
No EOL
701 B
HTML
20 lines
No EOL
701 B
HTML
<template name="notification_item">
|
|
<li class="{{#if read}}read{{/if}}">
|
|
<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}}" class="action-link">{{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}}" class="action-link">{{postHeadline}}</a>".
|
|
{{/with}}
|
|
{{/if}}
|
|
|
|
</p>
|
|
</li>
|
|
</template> |