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/_includes/partials/widgets/recent-links.liquid

17 lines
477 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 %}
{% assign author = link.data.link | stripUtm | authorLookup %}
<li>
<a href="{{ link.data.link }}" title="{{ link.data.title | escape }}">
{{ link.data.title }}
</a>
{% if author %} via {{ author }}{% endif %}
</li>
{% endfor %}
</ul>
{% endif %}