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