Initial commit: Indiekit Eleventy theme

This commit is contained in:
Ricardo
2026-01-24 12:13:34 +01:00
commit 2b225197b4
47 changed files with 9418 additions and 0 deletions

23
photos.njk Normal file
View File

@@ -0,0 +1,23 @@
---
layout: layouts/base.njk
title: Photos
permalink: /photos/
---
<h1>Photos</h1>
{% if collections.photos.length > 0 %}
<ul class="post-list">
{% for post in collections.photos %}
<li class="h-entry">
<div class="post-meta">
<time class="dt-published" datetime="{{ post.date.toISOString() }}">
{{ post.date | dateDisplay }}
</time>
</div>
<div class="e-content">{{ post.templateContent | safe }}</div>
</li>
{% endfor %}
</ul>
{% else %}
<p>No photos yet.</p>
{% endif %}