2024-08-16 17:01:16 +12:00
< script >
2024-10-04 16:59:49 +13:00
import tabler from 'yesvelte/css/tabler.min.css?url';
2024-11-19 12:39:02 +13:00
2024-11-28 15:22:46 +13:00
import { Navbar , NavbarItem } from 'yesvelte';
2024-10-04 16:59:49 +13:00
let theme = 'tabler';
2024-12-04 15:14:59 +13:00
import '../app.css';
2024-08-16 17:01:16 +12:00
< / script >
2024-10-04 16:59:49 +13:00
< svelte:head >
2024-11-19 12:39:02 +13:00
< link rel = "stylesheet" href = { tabler } / >
2024-10-04 16:59:49 +13:00
< / svelte:head >
2024-11-19 12:39:02 +13:00
< Navbar theme = 'light' style = "margin-bottom: 2em;" >
< a href = "/" > < NavbarItem title = "Web Services" / > < / a >
< a href = "/about" > < NavbarItem title = "About" / > < / a >
< / Navbar >
2024-08-26 17:00:21 +12:00
<!-- content provided by the +page.svelte file in this directory - and sub - directories -->
2024-08-16 17:01:16 +12:00
< slot / >
2024-08-26 17:00:21 +12:00
< footer >
< div class = "repo" > < a href = "https://forge.magnificent.nz/lightweight/webservices-app" title = "Access the source code repository for this site" > Code for this site< / a > < / div >
< div class = "copyright" > Copyleft 2024 by < a href = "https://davelane.nz" > Dave Lane< / a > < / div >
< div class = "attribution" > < a href = "/attribution" title = "All images used on this site are made available by their authors under a Creative Commons license" > Attribution< / a > < / div >
< / footer >
< style >
2024-08-29 08:28:04 +12:00
/* global styles are in ../app.css */
2024-10-04 16:59:49 +13:00
nav { margin : auto ; }
nav a { margin - right : 20px ; }
nav a:hover {
color: #000;
text-decoration: underline;
2024-08-26 17:00:21 +12:00
}
footer {
display: inline-grid;
2024-10-04 16:59:49 +13:00
margin: 4em auto 0 auto;
2024-09-25 16:08:30 +12:00
grid-template-columns: 2fr 3fr 1fr;
2024-08-26 17:00:21 +12:00
}
footer div {
2024-09-04 15:53:51 +12:00
text-align: left;
2024-09-25 16:08:30 +12:00
margin-left: 1em;
2024-08-26 17:00:21 +12:00
}
< / style >