Skip to main content

How can I display a stream of all recent public activities occurring in my nation?

Official response from

The following code will display a paginated stream of the most recent public activities occurring in your nation:

{% for activity in site.activities %}
<div class="activity">
{{ activity.show }}
</div>
{% endfor %}

If you want to limit the stream to say, the latest 5 activities, you can modify the code as shown:

{% for activity in site.activities limit:5 %}
<div class="activity">
{{ activity.show }}
</div>
{% endfor %}

Share this post

Showing 8 reactions

How would you tag this suggestion?
Please check your e-mail for a link to activate your account.