added drafts functionality

This commit is contained in:
Luca Junge 2023-02-05 19:05:27 +01:00
parent 3c2fda5cf2
commit 9eb641edff
40 changed files with 19087 additions and 21 deletions

19
src/posts/posts.njk Normal file
View file

@ -0,0 +1,19 @@
---
title: Alle Posts
eleventyExcludeFromCollections: true
---
<div class="grid gap-10 gap-x-24 sm:grid-cols-1 sm:grid-rows-1 md:mt-7">
{% for post in collections.post %}
<div>
<a href="{{post.url}}" class="inline-block md:inline-block text-2xl font-bold tracking-tight text-gray-100">{{post.data.title}}</a>
<span class="block md:inline-block text-sm md:ml-2 mb-2 text-gray-500">{{post.date | readableDate }}</span>
<p class="mb-3 font-normal text-gray-400">{{post.templateContent | excerpt}}</p>
<a href="{{post.url}}" class="inline-flex items-center py-2 px-3 text-sm font-bold text-center text-white bg-gray-700 rounded-lg hover:bg-gray-600 transition ease-in-out">
Weiterlesen</a>
</div>
{% endfor %}
</div>