Skip to content

Instantly share code, notes, and snippets.

@tomconnors
Last active December 28, 2015 01:49
Show Gist options
  • Save tomconnors/7423559 to your computer and use it in GitHub Desktop.
Save tomconnors/7423559 to your computer and use it in GitHub Desktop.
Layout and Views
<!--Whole application shares this markup: -->
<body>
<ul id="nav">
<li>Home</li>
<li>Other Page</li>
</ul>
<div id="content"></div>
</body>
<!-- Home Page 'focus' -->
<div id="content">
<h1>Home Page</h1>
</div>
<!-- Other Page 'focus' -->
<div id="content">
<h1>Other Page</h1>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment