rDrama/files/templates/home_comments.html

27 lines
698 B
HTML

{% extends "default.html" %}
{% block pagetitle %}All Comments{% endblock %}
{% block PseudoSubmitForm %}{% endblock %}
{% block sortnav %}{% endblock %}
{% block content %}
<div class="d-flex justify-content-between align-items-center mt-1 mb-2">
<div class="d-flex px-2 align-items-center mt-4">
{{- macros.time_filter_buttons() -}}
{{- macros.sorting_buttons(COMMENT_SORTS, True) -}}
</div>
</div>
<div class="row no-gutters {% if listing %}mt-md-3{% elif not listing %}my-md-3{% endif %}">
<div class="col-12 px-3">
<div class="posts">
{% include "comments.html" %}
</div>
</div>
</div>
{% endblock %}
{% block pagenav %}
{{macros.pagination()}}
{% endblock %}