18 lines
417 B
Text
18 lines
417 B
Text
---
|
|
permalink: false
|
|
---
|
|
|
|
## $ ls -lt blog/
|
|
|
|
{% if collections.posts.length %}
|
|
<ul class="post-list">
|
|
{% for post in collections.posts %}
|
|
<li>
|
|
<a href="{{ post.url }}">{{ post.data.title }}</a>
|
|
<span class="post-date">{{ post.date | readableDate }}</span>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% else %}
|
|
<p style="color:var(--p-dim)">No posts yet. Run: <code>touch blog/posts/first-post.md</code></p>
|
|
{% endif %}
|