openclassify/vendor/anomaly/posts-module/resources/views/posts/index.twig
Mostafa Moradi cd80f0352b initial
2022-03-09 12:57:37 +03:00

16 lines
343 B
Twig

{% extends layout('posts') %}
{% block content %}
<div id="posts">
<div class="container">
{% set posts = entries('posts').recent().paginate() %}
{% include "anomaly.module.posts::posts/partials/posts" with {"posts": posts} %}
{{ posts.links|raw }}
</div>
</div>
{% endblock %}