2021-07-21 01:12:26 +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 %}
|