webservices-app/src/routes/+layout.svelte

37 lines
1 KiB
Svelte
Raw Normal View History

<script>
import '../app.css';
</script>
<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 -->
<slot />
<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>
/* global styles are in ../app.css */
nav {
margin: auto;
}
nav a {
margin-right: 20px;
}
footer {
display: inline-grid;
margin: 4em, auto, 0, auto;
2024-09-25 16:08:30 +12:00
grid-template-columns: 2fr 3fr 1fr;
}
footer div {
text-align: left;
2024-09-25 16:08:30 +12:00
margin-left: 1em;
}
</style>