17 lines
477 B
Text
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 %}
|