Files
meteor/docs/client/docs.html
2012-03-28 17:57:29 -07:00

57 lines
1.2 KiB
HTML

<head>
<title>Meteor</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="container-fluid">
<div class="row-fluid">
<div id="nav" class="span2">
{{> nav }}
</div>
<div id="main" class="span8">
<div id="top"></div>
{{> introduction }}
{{> examples }}
{{> concepts }}
{{> api }}
{{> packages }}
{{> commandline }}
</div>
</div>
</div>
</body>
<template name="nav">
<div class="hidden-phone">
{{#each sections}}
{{#if type "spacer"}}
<div class="spacer"> </div>
{{/if}}
{{#if type "section"}}
<h{{depth}}><a href="#{{id}}" class="{{maybe_current}} {{style}}">
{{#if instance}}<i>{{instance}}</i>.{{/if}}{{name}}
</a></h{{depth}}>
{{/if}}
{{/each}}
</div>
</template>
<template name="dtdd_helper">
<dt><span class="name">{{{name}}}</span>
{{#if type}}<span class="type">{{type}}</span>{{/if}}
</dt>
<dd>{{#better_markdown}}{{{descr}}}{{/better_markdown}}</dd>
</template>
<template name="warning_helper">
<div class="warning">
{{#better_markdown}}{{{this}}}{{/better_markdown}}
</div>
</template>