10 lines
302 B
HTML
10 lines
302 B
HTML
{% extends "userpage.html" %}
|
|
{% block userpage_content %}
|
|
<div class="row no-gutters {% if listing %}mt-md-3{% elif not listing %}my-md-3{% endif %}" style="margin-top: 10px;">
|
|
<div class="col">
|
|
<div class="posts">
|
|
{% include "submission_listing.html" %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|