<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet href="/rss/rss-styles.xsl" type="text/xsl"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>Shyne</title><description>A minimalist personal blog and portfolio built with Astro, featuring a unique Polaroid-style photo gallery timeline.</description><link>https://shyne.vercel.app/</link><language>en-US</language><image><url>https://shyne.vercel.app/favicon/favicon.ico</url><title>Shyne</title><link>https://shyne.vercel.app/</link></image><appleTouchIcon>https://shyne.vercel.app/favicon/apple-touch-icon.png</appleTouchIcon><item><title>Markdown Features Guide</title><link>https://shyne.vercel.app/blog/callout-test/</link><guid isPermaLink="true">https://shyne.vercel.app/blog/callout-test/</guid><description>Explore all the Markdown features supported in this theme - code highlighting, math formulas, callouts, and more</description><pubDate>Mon, 16 Mar 2026 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;This guide showcases the rich Markdown features available in Astro Theme Shyne, including code syntax highlighting, math formulas, callouts, and more.&lt;/p&gt;
&lt;h2&gt;Code Highlighting&lt;/h2&gt;
&lt;p&gt;The theme uses Expressive Code and Shiki for beautiful code highlighting. Here&apos;s a TypeScript example:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;interface User {
  id: number;
  name: string;
  email: string;
}

function greetUser(user: User): string {
  return `Hello, ${user.name}!`;
}

const user: User = {
  id: 1,
  name: &quot;Alice&quot;,
  email: &quot;alice@example.com&quot;
};

console.log(greetUser(user));
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;And here&apos;s some Python:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;def fibonacci(n: int) -&amp;gt; int:
    &quot;&quot;&quot;Calculate the nth Fibonacci number.&quot;&quot;&quot;
    if n &amp;lt;= 1:
        return n
    return fibonacci(n - 1) + fibonacci(n - 2)

# Calculate first 10 Fibonacci numbers
for i in range(10):
    print(f&quot;F({i}) = {fibonacci(i)}&quot;)
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;Math Formulas&lt;/h2&gt;
&lt;p&gt;The theme supports LaTeX math rendering via KaTeX.&lt;/p&gt;
&lt;h3&gt;Inline Math&lt;/h3&gt;
&lt;p&gt;The equation $E = mc^2$ is famous.&lt;/p&gt;
&lt;h3&gt;Block Math&lt;/h3&gt;
&lt;p&gt;$$
\frac{d}{dx}\left( \int_{a}^{x} f(t),dt\right) = f(x)
$$&lt;/p&gt;
&lt;h2&gt;Callouts / Admonitions&lt;/h2&gt;
&lt;p&gt;Use GitHub-style callouts to highlight important information:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;[!NOTE]
Useful information that users should know, even when skimming.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;[!TIP]
A helpful suggestion to improve your workflow.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;[!WARNING]
Potential problems that users should avoid.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;[!CAUTION]
Advises about situations that could cause loss of data or hardware damage.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2&gt;Tables&lt;/h2&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Feature&lt;/th&gt;
&lt;th&gt;Status&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Blog&lt;/td&gt;
&lt;td&gt;✅&lt;/td&gt;
&lt;td&gt;Full-featured blog system&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Projects&lt;/td&gt;
&lt;td&gt;✅&lt;/td&gt;
&lt;td&gt;Portfolio showcase&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Photos&lt;/td&gt;
&lt;td&gt;✅&lt;/td&gt;
&lt;td&gt;Polaroid gallery&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Search&lt;/td&gt;
&lt;td&gt;✅&lt;/td&gt;
&lt;td&gt;Instant search&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;RSS&lt;/td&gt;
&lt;td&gt;✅&lt;/td&gt;
&lt;td&gt;RSS feed generation&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2&gt;Lists&lt;/h2&gt;
&lt;h3&gt;Unordered&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;First item&lt;/li&gt;
&lt;li&gt;Second item
&lt;ul&gt;
&lt;li&gt;Nested item&lt;/li&gt;
&lt;li&gt;Another nested&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Third item&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Ordered&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;First step&lt;/li&gt;
&lt;li&gt;Second step&lt;/li&gt;
&lt;li&gt;Third step&lt;/li&gt;
&lt;/ol&gt;
&lt;h2&gt;Links&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Internal link: &lt;a href=&quot;/about&quot;&gt;About Page&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;External link: &lt;a href=&quot;https://docs.astro.build&quot;&gt;Astro Documentation&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Images&lt;/h2&gt;
&lt;p&gt;You can include images in your posts:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;![Sample Image](/images/sample.jpg)&lt;/code&gt;&lt;/p&gt;
&lt;h2&gt;Conclusion&lt;/h2&gt;
&lt;p&gt;These features make Astro Theme Shyne perfect for technical writing and documentation.&lt;/p&gt;
</content:encoded></item><item><title>Welcome to Astro Theme Shyne</title><link>https://shyne.vercel.app/blog/first-blog/</link><guid isPermaLink="true">https://shyne.vercel.app/blog/first-blog/</guid><description>Get started with Astro Theme Shyne - a powerful blog and portfolio theme with Polaroid photo gallery</description><pubDate>Mon, 16 Mar 2026 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Welcome to &lt;strong&gt;Astro Theme Shyne&lt;/strong&gt;! This guide will help you understand the key features and how to customize this theme for your personal blog or portfolio.&lt;/p&gt;
&lt;h2&gt;Why Astro Theme Shyne?&lt;/h2&gt;
&lt;p&gt;Astro Theme Shyne is built with modern technologies to provide:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Blazing fast performance with static site generation&lt;/li&gt;
&lt;li&gt;Beautiful Polaroid-style photo gallery&lt;/li&gt;
&lt;li&gt;Full TypeScript support&lt;/li&gt;
&lt;li&gt;SEO optimization out of the box&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Getting Started&lt;/h2&gt;
&lt;h3&gt;Installation&lt;/h3&gt;
&lt;p&gt;Clone the repository and install dependencies:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;git clone https://github.com/FuTseYi/Astro-Theme-Shyne.git
cd Astro-Theme-Shyne
pnpm install
pnpm dev
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;Configuration&lt;/h3&gt;
&lt;p&gt;Edit &lt;code&gt;src/config.ts&lt;/code&gt; to customize your site:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;export const SITE: Site = {
  title: &apos;Your Site Name&apos;,
  description: &apos;Your site description&apos;,
  href: &apos;https://your-domain.com&apos;,
  author: &apos;Your Name&apos;,
}
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;Key Features&lt;/h2&gt;
&lt;h3&gt;Polaroid Photo Gallery&lt;/h3&gt;
&lt;p&gt;One of the unique features is the Polaroid-style photo timeline. Here&apos;s how to use it:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Create a new folder in &lt;code&gt;src/content/photos/&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Add your photos to an &lt;code&gt;assets&lt;/code&gt; subfolder&lt;/li&gt;
&lt;li&gt;Create an &lt;code&gt;index.md&lt;/code&gt; file with frontmatter&lt;/li&gt;
&lt;/ol&gt;
&lt;pre&gt;&lt;code&gt;---
title: My Trip
description: An amazing journey
startDate: 2026-01-01
favicon: ✈️
location: Japan
---

![](./assets/photo1.jpg)
![](./assets/photo2.jpg)
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;Blog Posts&lt;/h3&gt;
&lt;p&gt;Create blog posts in &lt;code&gt;src/content/blog/&lt;/code&gt;:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;---
title: My First Post
date: 2026-01-01
tags:
  - tech
---

Your content here...
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;Projects&lt;/h3&gt;
&lt;p&gt;Add projects in &lt;code&gt;src/content/projects/&lt;/code&gt;:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;---
name: My Project
description: A cool project
startDate: 2026-01-01
tags:
  - react
featured: true
---
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;Advanced Features&lt;/h2&gt;
&lt;h3&gt;Subposts&lt;/h3&gt;
&lt;p&gt;For long-form content, you can organize posts into subposts:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;src/content/blog/my-topic/
  index.md      (parent post)
  part-1/
    index.md    (subpost 1)
  part-2/
    index.md    (subpost 2)
&lt;/code&gt;&lt;/pre&gt;
&lt;h3&gt;Custom Components&lt;/h3&gt;
&lt;p&gt;The theme includes React components in &lt;code&gt;src/components/ui/&lt;/code&gt; following shadcn/ui patterns.&lt;/p&gt;
&lt;h2&gt;Deployment&lt;/h2&gt;
&lt;p&gt;Deploy to Vercel, Netlify, or any static hosting:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;pnpm build
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The output will be in the &lt;code&gt;dist&lt;/code&gt; folder.&lt;/p&gt;
&lt;h2&gt;Contributing&lt;/h2&gt;
&lt;p&gt;Contributions are welcome! Please see &lt;a href=&quot;https://github.com/FuTseYi/Astro-Theme-Shyne/blob/main/CONTRIBUTING.md&quot;&gt;CONTRIBUTING.md&lt;/a&gt;.&lt;/p&gt;
&lt;h2&gt;License&lt;/h2&gt;
&lt;p&gt;MIT License - feel free to use this theme for your own projects!&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;Happy blogging!&lt;/p&gt;
</content:encoded></item></channel></rss>