Created
December 19, 2016 03:00
-
-
Save JMWebDevelopment/ff7bc8b78dff374fa43623e7b79e1002 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<li id="comment-{{member.comment_ID}}" class="comment comment-{{member.comment_ID}} {{member.comment_parent ? 'child-comment post-parent-' + member.comment_parent : ''}}"> | |
<header class="comment-header"> | |
<h4 class="comment-name">{{member.comment_author}}</h4> | |
<h5 class="comment-date">{{ member.comment_date | date:"h:mm a" }} on {{ member.comment_date | date:"MMMM dd, yyyy" }}</h5> | |
</header> | |
<div class="comment-content" ng-bind-html="member.comment_content | unsafe"></div> | |
<footer class="reply"> | |
<button id="reply-{{member.comment_ID}}" class="respond-to-comment button" onclick="replyToComment(this.id)">{{translations.reply}}</button> | |
</footer> | |
</li> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment