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-03-13 16:35:41 -07:00

20 lines
No EOL
488 B
HTML

---
title: Links
layout: default
pagination:
data: links
size: 30
---
{% capture css %}
{% render "./assets/styles/pages/links.css" %}
{% endcapture %}
<style>{{ css }}</style>
<ul class="link__list">
{% for link in pagination.items %}
<li>
<a href="{{ link.url }}">{{ link.title }}</a>
{% if link.author and link.author != 'undefined' %}by {{ link.author }}{% endif %}
</li>
{% endfor %}
</ul>
{% render "partials/paginator.liquid", pagination:pagination %}