This commit is contained in:
2024-03-02 00:34:29 -05:00
committed by inportb
commit 7be5ebcdaa
49 changed files with 3907 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<script>
import { onDestroy } from 'svelte';
import 'bootstrap/dist/css/bootstrap.css';
import url_bootstrap from 'bootstrap/dist/js/bootstrap.bundle.js?url';
import { navlinks } from '$lib/stores.js';
import Navbar from '$lib/Navbar.svelte';
const links = navlinks.push({
name: 'VistA-SSH',
href: '/',
children: [
{ name: 'Lookup', href: '/lookup' },
{ name: 'Appointments', href: '/appointments' },
{ name: 'Clinics', href: '/clinics' },
{ name: 'RCRS', href: '/rcrs' },
{ name: 'Log', href: '/api/log.txt', target: '_blank' },
]
});
onDestroy(() => navlinks.pop(links));
</script>
<svelte:head>
<script src={url_bootstrap}></script>
</svelte:head>
<Navbar />
<main class="container-md">
<slot />
</main>