2024-08-16 17:01:16 +12:00
< script >
import '../app.css';
2024-10-04 16:59:49 +13:00
import tabler from 'yesvelte/css/tabler.min.css?url';
import daisyui from 'yesvelte/css/daisyui.min.css?url';
// you can change theme of your project from here.
let theme = 'tabler';
// let theme = 'daisyui';
2024-08-16 17:01:16 +12:00
< / script >
2024-10-04 16:59:49 +13:00
< svelte:head >
{ #if theme === 'tabler' }
< link rel = "stylesheet" href = { tabler } / >
{ : else }
< link rel = "stylesheet" href = { daisyui } / >
{ /if }
< / svelte:head >
2024-08-26 17:00:21 +12:00
< nav >
< a href = "/" > Web Services< / a >
< a href = "/about" > About< / a >
< / nav >
<!-- 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 >