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
···
0
0
0
0
0
0
0
···
1
+
---
2
+
3
+
---
4
+
5
+
<section class="feeds">
6
+
7
+
</section>
+2
-1
src/pages/index.astro
···
1
---
2
import Base from "/components/Base.astro";
0
3
import Landing from "/components/home/Landing.astro";
4
import NowPlaying from "/components/home/playing/NowPlaying.astro";
5
---
···
11
<!-- now playing -->
12
<NowPlaying />
13
<!-- feeds -->
14
-
<section class="feeds">feeds</section>
15
<!-- blog -->
16
<section class="blog">blog</section>
17
</main>
···
1
---
2
import Base from "/components/Base.astro";
3
+
import Feeds from "/components/home/feeds/Feeds.astro";
4
import Landing from "/components/home/Landing.astro";
5
import NowPlaying from "/components/home/playing/NowPlaying.astro";
6
---
···
12
<!-- now playing -->
13
<NowPlaying />
14
<!-- feeds -->
15
+
<Feeds />
16
<!-- blog -->
17
<section class="blog">blog</section>
18
</main>