Files
pages/src/routes/blog/+page.svelte

38 lines
1.3 KiB
Svelte
Raw Normal View History

2026-01-23 17:26:52 +01:00
<script lang="ts">
import Banner2 from "$lib/banner2.svelte";
import Content from "$lib/viewport/content.svelte";
// import Gallery, { type GalleryEntry } from "$lib/lists/gallery.svelte";
import { posts, type BlogPostLink } from "./posts";
import BlogGallery from "$lib/lists/blog-gallery.svelte";
2026-01-29 16:42:08 +01:00
// let entries: GalleryEntry[] = posts.map(mapEntries);
2026-01-29 16:42:08 +01:00
// function mapEntries(entry: BlogPostLink, index: number): GalleryEntry {
// let banner = "";
// if (entry.post.banner && entry.post.banner !== "") {
// banner = `/blog/${entry.key}/${entry.post.banner}`;
// }
// return {
// title: `${entry.post.title}`,
// subtitle: `#${(posts.length - index).toString().padStart(2, '0')} // ${entry.post.date}, ${entry.post.time}`,
// img: banner,
// link: `/blog/${entry.key}/`,
// imgAlt: `Preview image for ${entry.post.title}`,
// description: entry.post.description,
// };
// }
2026-01-23 17:26:52 +01:00
</script>
<svelte:head>
<title>Blog | denizk0461</title>
</svelte:head>
<Content>
<Banner2
2026-01-29 19:27:42 +01:00
title="Blog"
banner="robert.webp"
bannerAlt="View at a tram bridge rising and then curving to the left." />
2026-01-23 17:26:52 +01:00
<BlogGallery {posts} />
2026-01-23 17:26:52 +01:00
</Content>