Skip to content

phillychi3/gilded

Repository files navigation

Gilded - 浮光鎏金

Lazy...

Features

  • 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

Getting Started

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";

Author Information

export const AUTHOR = {
  name: "Your Name",
  bio: "Personal Bio",
  avatar: "Avatar URL",
  email: "your-email@example.com",
  location: "Location",
};

Navigation Menu

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...
];

Social Media Links

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...
];

Writing Posts

Create a New Post

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...

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors