26 lines
No EOL
1.1 KiB
HTML
26 lines
No EOL
1.1 KiB
HTML
---
|
|
title: Links
|
|
description: These are links I've liked or otherwise found interesting. They're all added manually, after having been read and, I suppose, properly considered.
|
|
layout: default
|
|
pagination:
|
|
data: links
|
|
size: 30
|
|
permalink: "/links/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}/{% endif %}index.html"
|
|
---
|
|
{% if pagination.pageNumber == 0 %}
|
|
<h2>Links</h2>
|
|
<p>These are links I've liked or otherwise found interesting. They're all added manually, after having been read and, I suppose, properly considered.</p>
|
|
{% render "partials/blocks/banners/rss.liquid", url: "https://coryd.dev/feeds/links", text: "Subscribe to my links feed or follow along on this page" %}
|
|
<hr />
|
|
{% endif %}
|
|
<div class="link-grid">
|
|
{% for link in pagination.items %}
|
|
<div class="link-box">
|
|
<a href="{{ link.link }}" title="{{ link.title | escape }}">
|
|
<strong>{{ link.title }}</strong>
|
|
</a>
|
|
{% if link.authors %} via <a href="{{ link.authors.url }}">{{ link.authors.name }}</a>{% endif %}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% render "partials/nav/paginator.liquid", pagination:pagination %} |