This repository has been archived on 2025-03-28. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
coryd.dev-eleventy/src/_includes/partials/recent-links.liquid
2024-04-17 15:11:25 -07:00

15 lines
362 B
Text

{% if links.size > 0 %}
<h2 id="links" class="link-list-header flex-centered">
{% tablericon "link" "Links" %}
Recent links
</h2>
<ul class="link-list">
{% for link in links limit: 5 %}
<li>
<a href="{{ link.data.link }}" title="{{ link.data.title | escape }}">
{{ link.data.title }}
</a>
</li>
{% endfor %}
</ul>
{% endif %}