blob: cfa29b3c5f6ff59b93ca6aff61a0e3734efb758a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
---
layout: base.njk
eleventyExcludeFromCollections: true
title: Posts
---
<h2>Posts</h2>
<div class="post-lists">
{% for post in collections.posts %}
<div class="post-data">
<div class="post-date">
{{post.date | dateFilter}}
</div>
<div class="post-title color-red">
<a href="{{post.url}}"> {{post.data.title}}</a>
</div>
</div>
{% endfor %}
</div>
|