You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
bandolier-website/client/Footer.svelte

85 lines
1.6 KiB

<script>
const posts = [];
import { support_email } from "$/client/config.js";
</script>
<style>
footer {
display: flex;
min-height: var(--fixed-footer-height);
color: var(--value9);
background-color: var(--value2);
padding: 1rem;
}
footer a {
color: var(--value9);
}
footer > column {
display: flex;
flex-direction: column;
padding: 1rem;
}
footer > column h5 {
margin: 0px;
}
#logo {
font-size: 1.5em;
font-family: computer;
color: var(--value9);
}
@media only screen and (max-width: 800px) {
footer {
flex-direction: column;
}
}
</style>
<footer>
<column>
<a id="logo" href="/">The Bandolier</a>
<p>
The Bandolier project. An educational fullstack web framework in JavaScript.
</p>
<span><a href="https://twitter.com/lzsthw">follow me @lzsthw</a></span>
<p>Copyright &copy; 2020-2023. Zed A. Shaw. All Rights Reserved.</p>
</column>
<column>
<h5>DOCS</h5>
<ol>
<li><a href="/client/#/quick/">QUICK START</a></li>
<li><a href="/client/#/long/">LONG START</a></li>
<li><a href="/client/#/docs/">API DOCS</a></li>
</ol>
</column>
<column>
<h5>RESOURCES</h5>
<ol>
<li><a href="/client/#/tips-tricks/">TIPS & TRICKS</a></li>
<li><a href="/client/#/bando/components/">DEMOS</a></li>
<li><a href="/docs/howto/">HOWTO RECIPES</a></li>
</ol>
</column>
<column>
<h5>RECENT POSTS</h5>
<ol>
{#each posts.slice(0, 10) as post}
<li><a href="/blog/{post.metadata.slug}/">{post.metadata.title}</a></li>
{/each}
</ol>
</column>
</footer>