11 lines
327 B
HTML
11 lines
327 B
HTML
{%- extends 'userpage/userpage.html' -%}
|
|
{% block userpage_content %}
|
|
<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">
|
|
{% include "post_listing.html" %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|