split todo backend and frontend
This commit is contained in:
commit
c8291e66ac
111 changed files with 27132 additions and 0 deletions
24
src_old/routes/_layout.svelte
Normal file
24
src_old/routes/_layout.svelte
Normal file
|
@ -0,0 +1,24 @@
|
|||
<script>
|
||||
// import Nav from '../components/Nav.svelte';
|
||||
|
||||
// export let segment;
|
||||
import Header from '../components/Header.svelte';
|
||||
</script>
|
||||
|
||||
<style>
|
||||
main {
|
||||
position: relative;
|
||||
max-width: 56em;
|
||||
background-color: white;
|
||||
padding: 2em;
|
||||
margin: 0 auto;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
</style>
|
||||
|
||||
<!-- <Nav {segment}/> -->
|
||||
<Header />
|
||||
|
||||
<main>
|
||||
<slot></slot>
|
||||
</main>
|
7
src_old/routes/about.svelte
Normal file
7
src_old/routes/about.svelte
Normal file
|
@ -0,0 +1,7 @@
|
|||
<svelte:head>
|
||||
<title>About</title>
|
||||
</svelte:head>
|
||||
|
||||
<h1>About this site</h1>
|
||||
|
||||
<p>This is the 'about' page. There's not much here.</p>
|
9
src_old/routes/index.svelte
Normal file
9
src_old/routes/index.svelte
Normal file
|
@ -0,0 +1,9 @@
|
|||
<script>
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>Todo</title>
|
||||
</svelte:head>
|
||||
|
||||
<style>
|
||||
</style>
|
0
src_old/routes/settings.svelte
Normal file
0
src_old/routes/settings.svelte
Normal file
Loading…
Add table
Add a link
Reference in a new issue