Personal Site
0
fork

Configure Feed

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

Move blog to its own component

+7 -1
+5
src/components/home/Blog.astro
··· 1 + --- 2 + 3 + --- 4 + 5 + <section class="blog">blog</section>
+2 -1
src/pages/index.astro
··· 1 1 --- 2 2 import Base from "/components/Base.astro"; 3 + import Blog from "/components/home/Blog.astro"; 3 4 import Feed from "/components/home/feeds/Feed.astro"; 4 5 import Landing from "/components/home/Landing.astro"; 5 6 import NowPlaying from "/components/home/playing/NowPlaying.astro"; ··· 19 20 <!-- feeds --> 20 21 <Feed /> 21 22 <!-- blog --> 22 - <section class="blog">blog</section> 23 + <Blog /> 23 24 </main> 24 25 25 26 <style>