www-lauka-net-11ty/books.njk

19 lines
417 B
Text

---
layout: layouts/home.njk
title: "lauka.net - All Books"
permalink: "/books/"
---
<h1><a href="/">{{ title }}</a></h1>
<p class="p-note">
These are all the books I've rated so far (oldest to newest):
</p>
<ul>
{%- for book in collections.book -%}
<li><a href="{{ book.url }}">{{ book.data.name }}</a>
{% for i in range(0, book.data.rating) -%}
{%- endfor %}
</li>
{%- endfor -%}
</ul>