grav-plugin-comments/admin/templates/partials/comments-list.html.twig
Flavio Copes c18914d3e3 Going on with the Comments plugin
Added a frontend form, store comments under data/, basic visualization
options
2015-10-06 19:23:02 +02:00

11 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>