added My Tracks page
This commit is contained in:
@@ -4,7 +4,6 @@
|
|||||||
import { type Project, games, hardware, apps, music, getStatusText, getStatusCode } from './projects';
|
import { type Project, games, hardware, apps, music, getStatusText, getStatusCode } from './projects';
|
||||||
import LinkList from "$lib/lists/link-list.svelte";
|
import LinkList from "$lib/lists/link-list.svelte";
|
||||||
import Content from "$lib/viewport/content.svelte";
|
import Content from "$lib/viewport/content.svelte";
|
||||||
import OutlinedButton from "$lib/components/outlined-button.svelte";
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<svelte:head>
|
<svelte:head>
|
||||||
@@ -36,6 +35,11 @@
|
|||||||
{/each}
|
{/each}
|
||||||
|
|
||||||
<h2 id="music">Music</h2>
|
<h2 id="music">Music</h2>
|
||||||
|
|
||||||
|
<p>I made a lot of music in the past; over a hundred songs in total. There's at least a small story behind pretty much every one of them here, and I am chronicling my memories on a subpage.</p>
|
||||||
|
|
||||||
|
<p>You can find this <a href="my-tracks">here</a>, if you're interested.</p>
|
||||||
|
|
||||||
{#each music as project}
|
{#each music as project}
|
||||||
{@render projectSummary({ project: project })}
|
{@render projectSummary({ project: project })}
|
||||||
{/each}
|
{/each}
|
||||||
|
|||||||
20
src/routes/projects/my-tracks/+page.svelte
Normal file
20
src/routes/projects/my-tracks/+page.svelte
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<script>
|
||||||
|
import Banner2 from "$lib/banner2.svelte";
|
||||||
|
import Content from "$lib/viewport/content.svelte";
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<svelte:head>
|
||||||
|
<title>My Tracks | denizk0461</title>
|
||||||
|
</svelte:head>
|
||||||
|
|
||||||
|
<Content>
|
||||||
|
<Banner2
|
||||||
|
title="My Tracks"
|
||||||
|
subtitle=""
|
||||||
|
banner=""
|
||||||
|
bannerAlt="" />
|
||||||
|
|
||||||
|
well this is awkward. there's nothing here yet. come back later?
|
||||||
|
|
||||||
|
<!-- <p>Fun fact: this page is named 'my tracks' because the folder on my PC where I store my finished songs is called 'my tracks' and it's been like this for a very long time.</p> -->
|
||||||
|
</Content>
|
||||||
Reference in New Issue
Block a user