Personal-Site/src/_includes/posts-list.njk

38 lines
911 B
Plaintext
Raw Normal View History

2023-07-10 05:28:59 +00:00
{% if postsList | filterDrafts | IsNotPage(page.url) | length %}
{% for post in postsList | filterDrafts | reverse %}
2023-07-10 22:01:56 +00:00
<section class="posts-list-post">
2023-07-10 05:28:59 +00:00
<h2><a href={{ post.url }}>{{ post.data.title }}</a></h2>
2023-07-10 23:31:04 +00:00
<dl class="postMetadata">
<div>
2023-07-10 22:01:56 +00:00
<dt>
<svg class="icon">
<use href="/images/feather-sprite.svg#clock" />
</svg>
Posted
</dt>
<dd>
{{ post.date.toLocaleDateString("en-US") }}
</dd>
2023-07-10 23:31:04 +00:00
</div>
<div>
2023-07-10 22:57:40 +00:00
<dt>
<svg class="icon">
<use href="/images/feather-sprite.svg#tag" />
</svg>
Tags
</dt>
{% for tag in post.data.tags %}
{% if tag != "posts" %}
<dd><a href="{{ "/posts/tags/" + (tag | slugify) | url }}">{{ tag }}</a></dd>
{% endif %}
{% endfor %}
2023-07-10 23:31:04 +00:00
</div>
</dl>
2023-07-10 05:28:59 +00:00
<p>{{ post.data.description }}</p>
</section>
{% endfor %}
{% else %}
<p>No posts</p>
{% endif %}