mirror of
https://github.com/ProjectSegfault/website.git
synced 2024-11-18 06:03:00 +05:30
14 lines
310 B
Svelte
14 lines
310 B
Svelte
<script lang="ts">
|
|
import type { PageData } from "./$types";
|
|
export let data: PageData;
|
|
|
|
import { SingleWordLists } from "$lib/BlogCard";
|
|
</script>
|
|
|
|
<h1>{data.title}</h1>
|
|
|
|
{#if !data.authors.error}
|
|
<SingleWordLists items={data.authors.authors} name="authors" />
|
|
{:else}
|
|
<p>{data.authors.message}</p>
|
|
{/if} |