mirror of
https://github.com/openclassify/openclassify.git
synced 2026-04-26 08:40:40 -05:00
16 lines
343 B
Twig
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 %}
|