Skip to content

Commit

Permalink
futzing
Browse files Browse the repository at this point in the history
  • Loading branch information
brianleroux committed May 23, 2011
1 parent a648925 commit 666b8f5
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions doc/_layout-begin.md
@@ -0,0 +1,44 @@
<html>
<head><title>lawnchair!</title><head>
<link href="css/app.css" type="text/css" rel="stylesheet" />
<link href="css/grid.css" type="text/css" rel="stylesheet" />
<link href="css/prettify.min.css" type="text/css" rel="stylesheet" />
<body>
<div class="container_12">
<div class="grid_3">
<h1><a href="/">Lawnchair</a></h1>
<p>clientside JSON store</p>
</div>
<%
function a(url, text, current) {
var klass = current == text ? 'current' : ''
return '<li><a href="' + url + '" class="' + klass + '">' + text + '</a></li>';
}
%>
<div class="grid_3">
<h2>Code</h2>
<ul class="nav">
<%- a( '/', 'home', current) %>
<%- a( '/downloads', 'downloads', current) %>
<%- a( '/adaptors', 'adaptors', current) %>
<%- a( '/tests', 'tests', current) %>
<%- a( '/license', 'license', current) %>
</ul>
<h2>documentation</h2>
<ul class="nav">
<%- a( '/documentation/quickstart', 'quickstart', current) %>
<%- a( '/documentation/initialization', 'initialization', current) %>
<%- a( '/documentation/saving', 'saving', current) %>
<%- a( '/documentation/finding', 'finding', current) %>
<%- a( '/documentation/removing', 'removing', current) %>
<%- a( '/documentation/iteration', 'iteration', current) %>
<%- a( '/documentation/api', 'api', current) %>
</ul>
<h2>community</h2>
<ul class="nav">
<li><a href="http://github.com/brianleroux/lawnchair">source on github</a></li>
</ul>
</div>
<div class="grid_6">

0 comments on commit 666b8f5

Please sign in to comment.