fix: book not showing author

This commit is contained in:
Devin Haska 2024-02-22 15:15:00 -08:00
parent 41b79ba54d
commit 47d015eedb
4 changed files with 9 additions and 4 deletions

View file

@ -3,4 +3,8 @@ module.exports = {
tags: "book",
permalink: "catalogue/books/{{ page.fileSlug }}/index.html",
linkTitle: "View book details",
eleventyComputed: {
tertiary: (data) =>
`<p style="--flow-space: 0.5em"><span class="[ text-fadeText ]">by</span> ${data.author}</p>`,
},
};