mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
53 lines
993 B
HTML
53 lines
993 B
HTML
<head>
|
|
<title>Meteor</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="main" class="ui-layout-center">
|
|
<div id="main-wrapper">
|
|
{{> introduction }}
|
|
{{> examples }}
|
|
{{> concepts }}
|
|
{{> api }}
|
|
{{> packages }}
|
|
{{> commandline }}
|
|
</div>
|
|
</div>
|
|
|
|
<div id="nav" class="ui-layout-west">
|
|
{{> nav }}
|
|
</div>
|
|
</body>
|
|
|
|
<template name="nav">
|
|
<div>
|
|
<h1>Meteor 0.1.5</h2>
|
|
{{#each sections}}
|
|
{{#if type "spacer"}}
|
|
<div class="spacer"> </div>
|
|
{{/if}}
|
|
{{#if type "section"}}
|
|
<h{{depth}}><a href="#{{id}}" class="{{maybe_current}} {{style}}">{{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>
|
|
|