This is the template project that's checked out and configured when you run the bando-up command from ljsthw-bandolier. This is where the code really lives.
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-template/rendered/pages/about/index.svelte

22 lines
714 B

<style>
</style>
<script>
import Layout from '../../Layout.svelte';
</script>
<Layout>
<main>
<h1>About</h1>
<p><b>The Bandolier</b> is the work of one person named Zed
A. Shaw. He created Learn Python the Hard Way, Learn Ruby the Hard Way,
and Learn C the Hard Way and has been an accomplished programmer for
close to 30 years. In his spare time he enjoys <a href="https://instagram.com/zedshaw">painting</a>,
playing guitars, and playing too many video games.</p>
<p>All of the code you're using in this website was written by Zed, and you can review
it at <a href="https://git.learnjsthehardway.com">git.learnjsthehardway.com</a>.
</p>
</main>
</Layout>