added styling

This commit is contained in:
Luca Junge 2022-11-03 13:17:52 +01:00
parent d2ef65d336
commit ed7ab76ad9
16 changed files with 2349 additions and 26 deletions

View file

@ -3,13 +3,12 @@ layout: layout.njk
title: The Best Eleventy Demo TM
---
<h1>luca-junge.de</h1>
<p>Welcome to my blog</p>
<ul>
<h1>Neueste Posts:</h1>
<ul class="list-disc list-inside">
{% for post in collections.post %}
<li>
<a href="{{ post.url }}">{{ post.data.title }}</a>
<a href="{{ post.url }}">
{{ post.data.title }}</a>
</li>
{% endfor %}
</ul>