summaryrefslogtreecommitdiff
path: root/templates/comments
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2024-02-08 23:49:45 -0600
committerHombreLaser <sebastian-440@live.com>2024-02-08 23:49:45 -0600
commit0b7111ce7186e64f8f290d0a2d8af7f1c987850f (patch)
tree08f383dd5635ead63168918b575897ff8a0f8b70 /templates/comments
parente91a86a714686a22149b55c9d5f0210cec8fef52 (diff)
Add comments rendering
Diffstat (limited to 'templates/comments')
-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>