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/now/links.liquid
Cory Dransfeldt 31f8409a2e
chore: post
2024-03-10 10:04:40 -07:00

15 lines
367 B
Text

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