Files
meteor/docs/client/docs.html
David Greenspan 3d935b6dab New docs for templates.
Squashed:

Live HTML concept section, written before

finish template concepts

all new Meteor.ui API reference

minor wording

update examples in docs

fix remaining examples

fix broken links in docs

Meteor.ui.chunk example in docs
2012-04-03 22:10:21 -07:00

63 lines
1.3 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>
<template name="note_helper">
<div class="note">
{{#better_markdown}}{{{this}}}{{/better_markdown}}
</div>
</template>