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-02-18 20:54:59 -08:00

21 lines
No EOL
542 B
HTML

---
title: Links
layout: default
pagination:
data: links
size: 30
image: /assets/img/ogi/links.jpg
---
{% capture css %}
{% render "./assets/styles/pages/links.css" %}
{% endcapture %}
<style>{{ css }}</style>
<ul class="link__list">
{% for link in pagination.items %}
<li>
<a class="no-underline" 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 %}