Created
April 10, 2010 18:34
-
-
Save jerodsanto/362215 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
var siteInfo = { | |
title: 'Pitstop Pizza Bar & Grill', | |
about: 'Pizza & stuff', // arbitrary info. maybe limit to 140 characters or something | |
phone: '(402) 493-2222', | |
address: '14513 West Maple Road, Omaha, NE 68116', | |
hours: { | |
Sunday: '10am - 6pm', | |
Monday: '8am - 9pm', | |
Tuesday: '8am - 9pm', | |
Wednesday: '8am - 9pm', | |
Thursday: '8am - 9pm', | |
Friday: '8am - 10pm', | |
Saturday: '10am - 11pm' | |
}, | |
menu: { // this could be extended to have arbitrary categories, but it doesn't work like that yet | |
Appetizers: [ | |
['Cheese Sticks', 'these are great and only $2.99!'], | |
['Wings', 'Classic Buffalo wings'] | |
], | |
Lunch: [ | |
['Pizza wiches', 'Just like back in grade school'] | |
], | |
Main: [ | |
['hamburger pizza', 'Our trademark hamburger pizza'], | |
['pepperoni pizza', 'This one is just $9.99'] | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment