summaryrefslogtreecommitdiff
path: root/templates/comments/index.jinja
blob: 08f8cfba09941bb8572c52094b126463076469af (plain)
1
2
3
4
5
6
7
8
9
<div id="comment-section" class="comment-section">
  {% for comment in page.items %}
      <div id="{{comment.id}}" class="comment">
	  <textarea rows="4" cols="50" disabled="true">
	      {{ comment.content }}
	  </textarea>
    </div>
  {% endfor %}
</div>