-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
61 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<script lang="ts"> | ||
import { href as hrefAdapter } from '$modules/utils'; | ||
export let href: string; | ||
let className = ''; | ||
export { className as class }; | ||
</script> | ||
|
||
<a class={className} href={hrefAdapter(href)}><slot /></a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<script> | ||
import Link from '$lib/components/Link.svelte'; | ||
</script> | ||
|
||
<div class="bg-stone-200 p-4"> | ||
<Link href="/" class="hover:underline">Giovanni Abbatepaolo</Link> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<script lang="ts" context="module"> | ||
import { db } from '$modules'; | ||
export const props = db.create('organizations', { | ||
name: 'ISIA Urbino', | ||
location: 'Urbino, Italia' | ||
}); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<script lang="ts" context="module"> | ||
import { db } from '$modules'; | ||
export const props = db.create('organizations', { | ||
name: 'Liceo Scientifico Sante Simone', | ||
location: 'Conversano, Italia' | ||
}); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
<script lang="ts"> | ||
import Navbar from '$lib/components/Navbar.svelte'; | ||
import '../app.pcss'; | ||
</script> | ||
|
||
<slot /> | ||
<Navbar /> | ||
|
||
<div class="pt-8"> | ||
<slot /> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters