-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initialize Jade Layout Structure #27
- Loading branch information
1 parent
682426f
commit 5e284a1
Showing
4 changed files
with
35 additions
and
2 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
extends layout | ||
|
||
block content | ||
h1 hey there |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
!!! 5 | ||
html(lang="en") | ||
head | ||
title letsgo.io - Discover Scenic Highways and Byways | ||
meta(charset="utf-8") | ||
meta(name="description", content="Looking for a scenic route or a great new place to visit? Check out LetsGo, a travel discovery tool that creates the best routes for you on a photo map.") | ||
meta("http-equiv"="X-UA-Compatible", content="IE=8, IE=9, IE=10") | ||
meta(name="viewport", content="width=device-width") | ||
meta(name="google-site-verification", content="5IR88rxZVzs03hKg6hfbxF-_CYvclDbOv-P6o3FWAFM") | ||
block styles | ||
link(rel="stylesheet", href="/stylesheets/style.css") | ||
link(rel="stylesheet", href="/stylesheets/map.css") | ||
script | ||
if (window.location.hash == '#_=_') { | ||
window.location.hash = ''; | ||
history.pushState('', document.title, window.location.pathname); | ||
} | ||
block head | ||
body | ||
block content | ||
footer | ||
Powered by | ||
a(href="http://nodejs.org/) Node.js | ||
hosted on | ||
a(href="http://www.windowsazure.com") Windows Azure | ||
with | ||
a(href="http://bing.com/maps/") Bing Maps | ||
block scripts | ||
script(src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js") |