summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/comments/index.jinja8
1 files changed, 5 insertions, 3 deletions
diff --git a/templates/comments/index.jinja b/templates/comments/index.jinja
index fea6edd..08f8cfb 100644
--- a/templates/comments/index.jinja
+++ b/templates/comments/index.jinja
@@ -1,7 +1,9 @@
-<div class="comment-section">
+<div id="comment-section" class="comment-section">
{% for comment in page.items %}
- <div class="comment">
- {{ comment.content }}
+ <div id="{{comment.id}}" class="comment">
+ <textarea rows="4" cols="50" disabled="true">
+ {{ comment.content }}
+ </textarea>
</div>
{% endfor %}
</div>