mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
35 lines
632 B
HTML
35 lines
632 B
HTML
<head>
|
|
<title>Meteor</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="main" class="ui-layout-center">
|
|
<div id="main-wrapper">
|
|
{{> introduction }}
|
|
{{> examples }}
|
|
{{> concepts }}
|
|
{{> api }}
|
|
{{> packages }}
|
|
</div>
|
|
</div>
|
|
|
|
<div id="nav" class="ui-layout-west">
|
|
{{> nav }}
|
|
</div>
|
|
</body>
|
|
|
|
<template name="nav">
|
|
<div>
|
|
<h1>Version 0.1.4</h2>
|
|
<hr />
|
|
{{#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>
|