chore: add authors
This commit is contained in:
parent
fb71612b52
commit
324483df99
2 changed files with 2 additions and 0 deletions
|
@ -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`
|
||||
|
|
|
@ -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 -%}
|
||||
|
|
Reference in a new issue