mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
20 lines
No EOL
629 B
HTML
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> |