chore: add authors

This commit is contained in:
Cory Dransfeldt 2023-06-28 21:19:22 -07:00
parent fb71612b52
commit 324483df99
No known key found for this signature in database
2 changed files with 2 additions and 0 deletions

View file

@ -19,6 +19,7 @@ module.exports = async function () {
})?.['cover_i']
books.push({
title: book.title,
author: book['authors'][0].name,
url: `https://oku.club/book/${book.slug}`,
cover: coverId
? `https://books.coryd.dev/b/id/${coverId}-L.jpg`

View file

@ -124,6 +124,7 @@ layout: main
<div class="absolute left-0 top-0 h-full w-full rounded-lg border border-purple-600 hover:border-purple-500 bg-cover-gradient dark:border-purple-400 dark:hover:border-purple-500"></div>
<div class="absolute left-1 bottom-2 drop-shadow-md">
<div class="px-1 text-xs font-bold text-white line-clamp-3">{{ book.title }}</div>
<div class="px-1 text-xs text-white line-clamp-2">{{ book.author }}</div>
</div>
{%- capture bookImg %}{{book.cover}}{% endcapture -%}
{%- capture bookName %}{{book.title | escape}}{% endcapture -%}