summaryrefslogtreecommitdiff
path: root/platform/darwin/docs/theme/templates/doc.mustache
diff options
context:
space:
mode:
Diffstat (limited to 'platform/darwin/docs/theme/templates/doc.mustache')
-rw-r--r--platform/darwin/docs/theme/templates/doc.mustache53
1 files changed, 53 insertions, 0 deletions
diff --git a/platform/darwin/docs/theme/templates/doc.mustache b/platform/darwin/docs/theme/templates/doc.mustache
new file mode 100644
index 0000000000..b16521a431
--- /dev/null
+++ b/platform/darwin/docs/theme/templates/doc.mustache
@@ -0,0 +1,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>