Lazy...
- Astro & Svelte: Built with Astro framework and Svelte components
- Image Layouts: Support for floating left/right, full-width and other image layout options
- Image Gallery: Integrated LightGallery for image viewing
- GitHub Admonitions: Automatic conversion of GitHub Admonitions syntax
Edit the src/config.ts file to customize your site:
export const SITE_TITLE = "Your Site Title";
export const SITE_DESCRIPTION = "Your Site Description";
export const COPYRIGHT_HOLDER = "Copyright Holder";export const AUTHOR = {
name: "Your Name",
bio: "Personal Bio",
avatar: "Avatar URL",
email: "your-email@example.com",
location: "Location",
};Add or modify navigation items in the NAV_ITEMS array:
export const NAV_ITEMS: NavItem[] = [
{ name: "home", path: "/" },
{ name: "about", path: "/about" },
{ name: "archive", path: "/archive" },
{ name: "friends", path: "/friends" },
// Add more navigation items...
];Configure your social media links in the SOCIAL_LINKS array:
export const SOCIAL_LINKS: SocialLink[] = [
{
name: "GitHub",
link: "https://github.com/yourusername",
icon: "mdi:github",
},
// Add more social links...
];Create a new .md or .mdx file in the src/content/blog/ directory:
---
title: 'Post Title'
description: 'Post Description'
published: 2026-01-03
updatedDate: 2026-01-04
tags: ['Tag1', 'Tag2']
category: 'Category Name'
cover: 'url or path to cover image'
---
Post content...