This commit is contained in:
Luca Junge 2022-11-03 11:43:28 +01:00
parent 3d4da2ee45
commit d2ef65d336
11 changed files with 6297 additions and 0 deletions

15
src/index.njk Normal file
View file

@ -0,0 +1,15 @@
---
layout: layout.njk
title: The Best Eleventy Demo TM
---
<h1>luca-junge.de</h1>
<p>Welcome to my blog</p>
<ul>
{% for post in collections.post %}
<li>
<a href="{{ post.url }}">{{ post.data.title }}</a>
</li>
{% endfor %}
</ul>