summaryrefslogtreecommitdiff
path: root/design/templates/comments/list.html
blob: 378145ea1200cc6ddcc722d82658edcdc1e5e224 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% load gravatar_local %}
{% load markdown%}
{% load bleach_tags %}
{% load nofollow %}
{% load comments %}
        <div class="comments--wrapper">
        {% for comment in comment_list %}
        <div id="comment-{{ comment.id }}" class="comment">
            <noscript class="datahashloader" data-hash="{%gravatar_hash comment.email %}"> 
            <img class="gravatar" src="https://images.luxagraf.net/gravcache/{%gravatar_hash comment.email %}.jpg" alt="gravatar icon for {{comment.name}}" />
            </noscript>
		    <div class="comment--head">
                <span class="who"><b><a href="{{comment.url}}" rel="nofollow" target="_blank">{{comment.name}}</a></b></span>
                <span class="when">{{comment.submit_date}}</span>
            </div>
		
            <div class="comment--body">
                {{comment.comment|removetags:"p"|markdown|bleach|nofollow|safe}}
		    </div>
        </div>
        {% endfor %}
        </div>