13 lines
No EOL
262 B
HTML
13 lines
No EOL
262 B
HTML
{% 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}}
|
|
{% endblock %} |