mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-27 10:02:59 +08:00
14 lines
611 B
Svelte
14 lines
611 B
Svelte
<script lang="ts">
|
|
import '../app.css';
|
|
import Header from './header.svelte';
|
|
|
|
let { children } = $props();
|
|
</script>
|
|
|
|
<Header />
|
|
|
|
{@render children()}
|
|
|
|
<footer class="container mx-auto bg-white mt-2 py-6 text-sm text-center text-gray-500">
|
|
© 2024-2025 <a href="https://github.com/eliandoran" class="text-blue-500 hover:underline">Elian Doran</a> and the <a href="https://github.com/TriliumNext/Notes/graphs/contributors" class="text-blue-500 hover:underline">team</a>. <br/> © 2017-2024 <a href="https://github.com/zadam" class="text-blue-500 hover:underline">Adam Zivner</a>.
|
|
</footer> |