mirror of
https://codeberg.org/lauralani/www-lauka-net.git
synced 2024-11-23 20:50:40 +01:00
33 lines
1.1 KiB
Text
33 lines
1.1 KiB
Text
---
|
|
title: lauka (dot) net
|
|
permalink: "books/{{ name | slugify }}/index.html"
|
|
---
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta
|
|
name="viewport"
|
|
content="shrink-to-fit=no,width=device-width,height=device-height,initial-scale=1,user-scalable=1">
|
|
<meta name="description" content="My little cozy place on the web.">
|
|
<title>lauka.net - Book: {{ author }}: {{ name }}</title>
|
|
<link rel='stylesheet' type='text/css' media='screen' href="{{ '/css/main.css' | url }}"/>
|
|
</head>
|
|
<body class="h-card">
|
|
<h1>Book: {{ name }} by {{ author }}</h1>
|
|
<a href="/books/">⇠ back to book overview</a>
|
|
<br/><br/>
|
|
<h2>Rating:
|
|
{% for i in range(0, rating) -%}
|
|
⭐
|
|
{%- endfor %}
|
|
|
|
</h2>
|
|
{% if goodreads %}<a href="{{ goodreads }}" target="_blank">Link to Goodreads</a>{% endif %}
|
|
<p class="p-note">
|
|
{{ content | safe }}
|
|
</p>
|
|
</body>
|
|
</html>
|