Last active
August 29, 2015 14:01
-
-
Save kingluddite/e12120599f1f9dd77fcb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template name="About"> | |
<div class="container"> | |
<div class="page-header"> | |
<h1>About <small>we are more awesome than you are</small></h1> | |
</div> | |
</div> | |
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template name="Home"> | |
<div class="page-header"> | |
<h1>Home<small> is where you lay your hat</small></h1> | |
</div> | |
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template name="Projects"> | |
<div class="page-header"> | |
<h1>Projects<small>list</small></h1> | |
</div> | |
</template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add these pages and then localhost:3000, localhost:3000/about, and localhost:3000/projects entered into the URL will take you to those respective 'pages'.
Because we set up the paths and wired them to these pages in router.js, the links in menu.html will also take us to the different pages.