-
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.
Cleanup main template so we can start jading #27
- Loading branch information
1 parent
e412da5
commit 682426f
Showing
1 changed file
with
22 additions
and
47 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,28 @@ | ||
<% include header %> | ||
|
||
|
||
<div id="welcomeScreen"> | ||
<img id="introLogo" class="hidden" src="/images/LetsGoLogo.svg" /> | ||
<div id="bigSearchBar"> | ||
<h1 id="headerBar">Where would you like to go?</h1> | ||
<div id="searchWrapper"> | ||
<input type="text" class="location bigSearchInput" autocomplete="off" spellcheck="false" id="searchFrom" name="location" placeholder="From:"></input> | ||
<input type="text" class="location bigSearchInput" autocomplete="off" spellcheck="false" id="searchTo" name="location" placeholder="To:"></input> | ||
<a href="#" class="button" id="lookup">Look Here</a> | ||
<!-- <a href="#" class="button second" id="explore">Explore</a> --> | ||
</div> | ||
<div id="welcomeScreen"> | ||
<img id="introLogo" class="hidden" src="/images/LetsGoLogo.svg" /> | ||
<div id="bigSearchBar"> | ||
<h1 id="headerBar">Where would you like to go?</h1> | ||
<div id="searchWrapper"> | ||
<input type="text" class="location bigSearchInput" autocomplete="off" spellcheck="false" id="searchFrom" name="location" placeholder="From:"></input> | ||
<input type="text" class="location bigSearchInput" autocomplete="off" spellcheck="false" id="searchTo" name="location" placeholder="To:"></input> | ||
<a href="#" class="button" id="lookup">Look Here</a> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div id="theApp" class="obscured"> | ||
<header> | ||
<a href="/"><img id="headerLogo" src="/images/LetsGoLogo-sm.png" /></a> | ||
<input type="text" class="location" autocomplete="off" spellcheck="false" id="searchFromHeader" name="location" placeholder="From:"></input> | ||
<input type="text" class="location" autocomplete="off" spellcheck="false" id="searchToHeader" name="location" placeholder="To:"></input> | ||
<a href="#" class="button" id="lookupHeader">Go!</a> | ||
<!-- | ||
<div class="headerMenu"> | ||
<div class="gettyOption button accountButton"> | ||
Getty: | ||
<input name="gettyCheckbox" id="getty" type="checkbox" checked="on"> | ||
</div> | ||
<% if (!user) { %> | ||
<a href="/auth" class="button accountButton">Log In</a> | ||
<% } else { %> | ||
<span class="button accountButton loggedIn"> | ||
<img src="http://avatars.io/facebook/<%=user.username%>?size=small" width="26" height="26"> | ||
<%= user.displayName %> | ||
</span> | ||
<a href="/auth/logout/" class="button logoutButton"> | ||
Logout | ||
</a> | ||
<% } %> | ||
</div> | ||
--> | ||
|
||
</header> <!-- //END Header --> | ||
<div id="bigPicture"> | ||
<div id="pictureControls"> | ||
<img src="/images/close.png" onclick="smallPicture()"> | ||
<!-- <img src="/images/expand.png" onclick="hugePicture()"> --> | ||
</div> | ||
<div id="theApp" class="obscured"> | ||
<header> | ||
<a href="/"><img id="headerLogo" src="/images/LetsGoLogo-sm.png" /></a> | ||
<input type="text" class="location" autocomplete="off" spellcheck="false" id="searchFromHeader" name="location" placeholder="From:"></input> | ||
<input type="text" class="location" autocomplete="off" spellcheck="false" id="searchToHeader" name="location" placeholder="To:"></input> | ||
<a href="#" class="button" id="lookupHeader">Go!</a> | ||
</header> <!-- //END Header --> | ||
<div id="bigPicture"> | ||
<div id="pictureControls"> | ||
<img src="/images/close.png" onclick="smallPicture()"> | ||
</div> | ||
<div id="mapFrame"></div> | ||
</div> <!-- //END theApp --> | ||
|
||
</div> | ||
<div id="mapFrame"></div> | ||
</div> <!-- //END theApp --> | ||
<% include footer %> |