added first modelviewer example

This commit is contained in:
Luca Junge 2022-11-10 19:05:53 +01:00
parent ed7ab76ad9
commit 1326d54083
13 changed files with 1406 additions and 17 deletions

View file

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