Fork of Chiri for Astro for my blog
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: add config demo images

the3ash 977c01ef 11f8a1c3

+27 -3
+1 -1
src/config.ts
··· 23 23 readingTime: false, // Show reading time in posts 24 24 toc: true, // Show the table of contents when there is enough page width 25 25 imageViewer: true, // Enable image viewer 26 - copyCode: false // Enable copy button in code blocks 26 + copyCode: true // Enable copy button in code blocks 27 27 }
src/content/posts/_assets/copy-code.png

This is a binary file and will not be displayed.

src/content/posts/_assets/date-on-left.png

This is a binary file and will not be displayed.

src/content/posts/_assets/reading-time.png

This is a binary file and will not be displayed.

src/content/posts/_assets/theme-toggle.png

This is a binary file and will not be displayed.

src/content/posts/_assets/toc.png

This is a binary file and will not be displayed.

+24
src/content/posts/theme-guide.md
··· 72 72 pubDate: '2025-07-10' 73 73 --- 74 74 ``` 75 + 76 + --- 77 + 78 + ## Preview of Some Features 79 + 80 + - Theme Toggle 81 + 82 + ![_Theme Toggle Button](./_assets/theme-toggle.png) 83 + 84 + - Date Position Options 85 + 86 + ![_Date on Left Side](./_assets/date-on-left.png) 87 + 88 + - Table of Contents 89 + 90 + ![_Table of Contents](./_assets/toc.png) 91 + 92 + - Reading Time 93 + 94 + ![_Reading Time Display](./_assets/reading-time.png) 95 + 96 + - Copy Code Button 97 + 98 + ![_Copy Code Button](./_assets/copy-code.png)
+2 -2
src/styles/post.css
··· 165 165 166 166 /* Blockquotes */ 167 167 .prose blockquote { 168 - border-left: 2px solid var(--border); 168 + border-left: 1.5px solid var(--border); 169 169 margin: 0 0 1.25em 0; 170 - padding: 0 0 0 1em; 170 + padding: 0 0 0 1.25em; 171 171 text-align: left; 172 172 } 173 173