WIP, added nav, about & attribution pages, and updated styles to ensure tags flow properly
This commit is contained in:
parent
429087ce80
commit
6d3723cc11
4 changed files with 738 additions and 532 deletions
|
@ -3,5 +3,37 @@
|
|||
|
||||
</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>
|
||||
body {
|
||||
width: 96%;
|
||||
margin: auto;
|
||||
}
|
||||
nav {
|
||||
margin: auto;
|
||||
}
|
||||
nav a {
|
||||
margin-right: 20px;
|
||||
}
|
||||
footer {
|
||||
display: inline-grid;
|
||||
margin: auto;
|
||||
grid-template-columns: 1fr 1fr 1fr;
|
||||
}
|
||||
footer div {
|
||||
text-align: center;
|
||||
}
|
||||
</style>
|
||||
|
|
File diff suppressed because it is too large
Load diff
1
src/routes/about/+page.svelte
Normal file
1
src/routes/about/+page.svelte
Normal file
|
@ -0,0 +1 @@
|
|||
<h1>About this site... </h1>
|
1
src/routes/attribution/+page.svelte
Normal file
1
src/routes/attribution/+page.svelte
Normal file
|
@ -0,0 +1 @@
|
|||
<h1>Attribution for included media</h1>
|
Loading…
Reference in a new issue