summaryrefslogtreecommitdiff
path: root/platform/darwin/docs/theme/templates/doc.mustache
blob: b16521a43137253d19258519191dcf34f5b0c640 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
  <head>
    <title>{{name}} {{kind}} Reference</title>
    <link rel="stylesheet" type="text/css" href="{{path_to_root}}css/jazzy.css" />
    <link rel="stylesheet" type="text/css" href="{{path_to_root}}css/highlight.css" />
    <meta charset="utf-8">
    <script src="{{path_to_root}}js/jquery.min.js" defer></script>
    <script src="{{path_to_root}}js/jazzy.js" defer></script>
    {{{custom_head}}}
  </head>
  <body>

    {{#dash_type}}
    <a name="//apple_ref/{{language_stub}}/{{dash_type}}/{{name}}" class="dashAnchor"></a>
    {{/dash_type}}

    <a title="{{name}} {{kind}} Reference"></a>

    {{> header}}

    <p class="breadcrumbs">
      <a class="breadcrumb" href="{{path_to_root}}index.html">{{module_name}} Reference</a>
      <img class="carat" src="{{path_to_root}}img/carat.png" />
      {{name}} {{kind}} Reference
    </p>

    <div class="content-wrapper">
      {{> nav}}
      <article class="main-content">

        <section class="section">
          <div class="section-content">
            {{^hide_name}}<h1>{{name}}</h1>{{/hide_name}}
            {{#declaration}}
              <div class="declaration">
                <div class="language">
                  {{{declaration}}}
                </div>
              </div>
            {{/declaration}}
            {{{overview}}}
          </div>
        </section>

        {{> tasks}}

      </article>
    </div>
    {{> footer}}
  </body>
</div>
</html>