How can I display a stream of the most recent public activities occurring in my nation?
A:
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 %}
Was this helpful?
Be the first to comment
Join our team
We're hiring great software developers and organizers. Learn more →