tangled
alpha
login
or
join now
vielle.dev
/
site
0
fork
atom
Personal Site
0
fork
atom
overview
issues
pulls
pipelines
Add feed component
vielle.dev
7 months ago
0ef35874
7250ffe2
verified
This commit was signed with the committer's
known signature
.
vielle.dev
SSH Key Fingerprint:
SHA256:/4bvxqoEh9iMdjAPgcgAgXKZZQTROL3ULiPt6nH9RSs=
+9
-1
2 changed files
expand all
collapse all
unified
split
src
components
home
feeds
Feeds.astro
pages
index.astro
+7
src/components/home/feeds/Feeds.astro
···
1
1
+
---
2
2
+
3
3
+
---
4
4
+
5
5
+
<section class="feeds">
6
6
+
7
7
+
</section>
+2
-1
src/pages/index.astro
···
1
1
---
2
2
import Base from "/components/Base.astro";
3
3
+
import Feeds from "/components/home/feeds/Feeds.astro";
3
4
import Landing from "/components/home/Landing.astro";
4
5
import NowPlaying from "/components/home/playing/NowPlaying.astro";
5
6
---
···
11
12
<!-- now playing -->
12
13
<NowPlaying />
13
14
<!-- feeds -->
14
14
-
<section class="feeds">feeds</section>
15
15
+
<Feeds />
15
16
<!-- blog -->
16
17
<section class="blog">blog</section>
17
18
</main>