this repo has no description
0
fork

Configure Feed

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

add content to blog page (link etc)

+12 -1
+12 -1
src/pages/blog.astro
··· 4 4 console.log(Rss); 5 5 --- 6 6 7 + <style> 8 + a:has(svg) { 9 + background-color: orange; 10 + display: block; 11 + width: fit-content; 12 + height: fit-content; 13 + padding: 1rem; 14 + border-radius: 1rem; 15 + } 16 + </style> 17 + 7 18 <Base title="Blog"> 8 19 <h1>Blog</h1> 9 - <a href="/rss.xml" aria-label="Rss Feed"><Rss /></a> 20 + <a href="/rss.xml" aria-label="Rss Feed"><Rss width={64} height={64} /></a> 10 21 </Base>