Gordon Pedersen
6647dabdc8
Needed a little modification here and there to make it work with the activity pub data structure, but it's looking pretty good!
18 lines
343 B
Text
18 lines
343 B
Text
---
|
|
title: My Feed
|
|
layout: layout-feed.njk
|
|
pagination:
|
|
data: collections.feed
|
|
size: 20
|
|
eleventyExcludeFromCollections: true
|
|
---
|
|
{% from "macro-entry.njk" import entryMacro %}
|
|
|
|
<ul>
|
|
{% for item in pagination.items %}
|
|
<li>
|
|
{{ entryMacro(item.data, item.data.author, item.url, item.templateContent, true) }}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
|