This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/src/links.html
2024-04-22 13:14:19 -07:00

25 lines
No EOL
844 B
HTML

---
title: Links
layout: default
pagination:
data: collections.links
size: 30
---
{% if pagination.pageNumber == 0 %}
<h2 class="page-header">Links</h2>
{% render "partials/banners/rss.liquid", url: "https://feedpress.me/coryd-links", text: "Subscribe to my links feed or follow along on this page" %}
<p>These are links I've liked or otherwise found interesting.</p>
<hr class="large-spacing" />
{% endif %}
<ul class="link-list reduced-spacing">
{% for link in pagination.items %}
{% assign author = link.data.link | stripUtm | authorLookup %}
<li>
<a href="{{ link.data.link }}" title="{{ link.data.title | escape }}">
<strong>{{ link.data.title }}</strong>
</a>
{% if author %} via {{ author }}{% endif %}
</li>
{% endfor %}
</ul>
{% render "partials/paginator.liquid", pagination:pagination %}