deno.land / x / lume_theme_simple_blog@v0.4.0 / src / _includes / templates / post-list.njk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<ul class="postList"> {% asyncEach post in postslist %} <li class="post"> <h2 class="post-title"> <a href="{{ post.data.url }}" {% if post.data.url == url %} aria-current="page"{% endif %}> {{ post.data.title or post.data.url }} </a> </h2> {% set date = post.data.date %} {% set tags = post.data.tags %} {% set author = post.data.author %} {% set readingTime = post.data.readingTime %} {% include "./post-details.njk" %} </li>{% endeach %}</ul>
lume_theme_simple_blog

Version Info

Tagged at
2 years ago