Personal Site
0
fork

Configure Feed

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

Add /blog page w proper content.

Just using sidebar component lmao

+23 -1
+23 -1
src/pages/blog/index.astro
··· 1 1 --- 2 2 import Base from "/components/Base.astro"; 3 + import Blog from "/components/home/Blog.astro"; 3 4 --- 4 5 5 6 <Base> 6 - <h1>vielle.dev</h1> 7 + <main> 8 + <Blog heading="h1" /> 9 + </main> 7 10 </Base> 11 + 12 + <style is:global> 13 + main { 14 + max-width: 40ch; 15 + margin: auto; 16 + } 17 + 18 + .blog { 19 + contain: none !important; 20 + 21 + h1 { 22 + margin-block-end: 10px; 23 + } 24 + 25 + article { 26 + margin-block-end: 5px; 27 + } 28 + } 29 + </style>