18 lines
566 B
HTML
18 lines
566 B
HTML
|
|
<section
|
||
|
|
id="id_applet_my_posts"
|
||
|
|
style="--applet-cols: {{ entry.applet.grid_cols }}; --applet-rows: {{ entry.applet.grid_rows }};"
|
||
|
|
>
|
||
|
|
<h2><a href="{% url 'my_posts' user.id %}" class="my-posts-main">My Posts</a></h2>
|
||
|
|
<div class="my-posts-container">
|
||
|
|
<ul>
|
||
|
|
{% for post in recent_posts %}
|
||
|
|
<li>
|
||
|
|
<a href="{{ post.get_absolute_url }}">{{ post.name }}</a>
|
||
|
|
</li>
|
||
|
|
{% empty %}
|
||
|
|
<li>No posts yet.</li>
|
||
|
|
{% endfor %}
|
||
|
|
</ul>
|
||
|
|
</div>
|
||
|
|
</section>
|