grav-plugin-comments/admin/templates/partials/comments-list.html.twig

12 lines
230 B
Twig

<table>
{% for comment in file.data.comments %}
<tr>
<td>
{{ comment.text }}
<br />
By {{ comment.author }} {{ comment.email }}
</td>
</tr>
{% endfor %}
</table>