Add about page

This commit is contained in:
Ben Ramey
2014-05-13 11:43:28 -05:00
parent 10621771f4
commit 11d9664a73
3 changed files with 43 additions and 0 deletions

View File

@@ -35,6 +35,9 @@ module.exports.routes = {
'/': {
view: 'home/index'
},
'/about': {
view: 'about'
},
/*
// But what if you want your home page to display

36
views/about.jade Normal file
View File

@@ -0,0 +1,36 @@
extends interior-page-layout
block pagetitle
| about lunchrun.me
block interiorcontent
.row
.col-xs-12.col-sm-8
h2 Why lunchrun.me?
p
| If you're like me, then lunch runs at the office are always
| a little bit of a hassle. Someone is usually nice enough to
| organize it, but then the e-mails start flying and who can keep
| track of everyone's orders in all that tangled web of email threads?
p
| This is the problem that lunchrun.me wants to solve: make lunch runs
| at the office a quick and painless task. So, we give you (the lunch
| run coordinator) an easy form to fill out with the basic lunch run information
| like where you are going and who is going. Everyone gets an email linking
| back to a simple form on the site where they can enter what they want for
| lunch. As people enter their lunches, you can sit at your screen and watch
| the lunch run orders fill up to 100% and you know you're ready to go. It's
| that easy!
h2 Help us improve!
p
| We are always looking to improve the site. So, give us your feedback!
p
| You can keep track of recent updates listed over there under "Recent updates".
.col-xs-12.col-sm-4
h2 Recent updates
ul
li [5/13/14] Added meta tags
li [5/13/14] Added validation messaging to create-run form

View File

@@ -0,0 +1,4 @@
extends layout
block content
include ../assets/linker/templates/layouts/interior-page