Skip to content

Commit

Permalink
Cleanup main template so we can start jading #27
Browse files Browse the repository at this point in the history
  • Loading branch information
mohamedmansour committed Apr 12, 2013
1 parent e412da5 commit 682426f
Showing 1 changed file with 22 additions and 47 deletions.
69 changes: 22 additions & 47 deletions views/index.ejs
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 %>

0 comments on commit 682426f

Please sign in to comment.