rDrama/files/templates/userpage/posts.html

11 lines
321 B
HTML
Raw Normal View History

{%- extends 'userpage/userpage.html' -%}
{% block userpage_content %}
2023-06-07 23:26:32 +00:00
<div class="row no-gutters {% if listing %}mt-md-3{% elif not listing %}my-md-3{% endif %} userpage-posts" style="margin-top: 10px;">
<div class="col">
<div class="posts">
2023-06-07 23:26:32 +00:00
{% include "post_listing.html" %}
</div>
</div>
</div>
{% endblock %}