rDrama/files/templates/search_comments.html

13 lines
262 B
HTML
Raw Normal View History

2021-10-15 14:08:27 +00:00
{% extends "search.html" %}
{% block listing_template %}
<div class="posts p-3 p-md-0">
{% with comments=comments %}
{% include "comments.html" %}
{% endwith %}
</div>
{% endblock %}
{% block listinglength %}
{{comments | length}}
2021-09-24 00:14:22 +00:00
{% endblock %}