pull/3/head
Tymon 1 year ago
parent 4086254e6a
commit 65bada52c6

@ -11,7 +11,7 @@ const chapters = (await getCollection("fanfic")).filter(
<div>
{
chapters.map((chapter, i) => (
<a href={chapter.slug.split("/")[1]}>
<a href={`/fanfic/${chapter.slug}`}>
<div
class="main-content"
style="margin-bottom: 10px; font-size: 125%;"

@ -16,7 +16,7 @@ const fics = (await getCollection("fanfic"))
<div>
{
fics.map((fic) => (
<a href={`fanfic/${fic.slug}`}>
<a href={`/fanfic/${fic.slug}`}>
<div
class="main-content"
style="margin-bottom: 10px; font-size: 125%;"

Loading…
Cancel
Save