feat: refactor feeds; reduce dependencies
This commit is contained in:
parent
4067148658
commit
d768007f1c
375 changed files with 2568 additions and 13971 deletions
|
@ -2,14 +2,15 @@
|
|||
title: Links
|
||||
layout: default
|
||||
pagination:
|
||||
data: links
|
||||
data: collections.links
|
||||
size: 30
|
||||
---
|
||||
<ul class="link-list reduced-spacing">
|
||||
{% for link in pagination.items %}
|
||||
<li>
|
||||
<a href="{{ link.url }}">{{ link.title }}</a>
|
||||
{% if link.author and link.author != 'undefined' %}by {{ link.author }}{% endif %}
|
||||
<a href="{{ link.url }}" title="{{ link.data.title | escape }}">
|
||||
{{ link.data.title }}
|
||||
</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
|
Reference in a new issue