2022-06-23 11:10:24 +02:00
|
|
|
---
|
|
|
|
layout: layouts/home.njk
|
|
|
|
title: "lauka.net - All Books"
|
|
|
|
permalink: "/books/"
|
2022-07-02 16:31:52 +02:00
|
|
|
eleventyExcludeFromCollections: true
|
2022-06-23 11:10:24 +02:00
|
|
|
---
|
|
|
|
|
2023-06-14 11:06:43 +02:00
|
|
|
<h1>{{ title }}</h1>
|
|
|
|
<a href="/">⇠ back home</a>
|
|
|
|
<br/><br/>
|
2022-06-23 11:10:24 +02:00
|
|
|
<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>
|