sl-site/tips/index.njk

24 lines
372 B
Plaintext

---
title: Tips
eleventyNavigation:
key: Tips
tags: []
---
<p>
Get your free tech tips here.
</p>
<p>
<ul>
{%- for item in collections.tips -%}
<li>
<a href="{{ item.url | url }}">{{ item.data.title }}</a>
{% if item.data.description %}
<span style="display: block;">{{ item.data.description }}</span>
{% endif %}
</li>
{%- endfor -%}
</ul>
</p>