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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
<!DOCTYPE html>
<!-- Documentation licensed under CC BY 4.0 -->
<!-- License available at https://creativecommons.org/licenses/by/4.0/ -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
{% include favicon.html %}
<link rel="stylesheet" type="text/css"
href="https://fonts.googleapis.com/css?family=Roboto:500,400,300,100">
<link rel="stylesheet" type="text/css" href="{{site.baseurl}}/css/article.css">
<link rel="stylesheet" type="text/css" href="{{site.baseurl}}/css/syntax.css">
<title>{{page.title}}</title>
<body>
<header>
<a href="{{site.baseurl}}" class="closurelogo"><div></div></a>
<h1><a href="{{site.baseurl}}">
{{page.product_name}}
</a></h1>
<nav>
{% capture navbar %}{% include navbar.md %}{% endcapture %}
{{navbar|markdownify}}
</nav>
</header>
<div>
<nav class="side vertical">
{% if page.section %}
{% capture sidenav %}{% include {{page.section}}/sitemap.md %}{% endcapture %}
{{sidenav|markdownify}}
{% endif %}
</nav>
<nav class="toc vertical float">
<ul>
<li class="heading"><a href="#top_of_page">Contents</a>
</ul>
</nav>
<div id="_toc">
<p>[TOC]</p>
</div>
<article>
<h1 id="top_of_page">{{page.heading}}</h1>
<nav class="toc vertical inline">
<ul>
<li class="heading"><a href="#top_of_page">Contents</a>
</ul>
</nav>
{{content}}
</article>
</div>
<footer>
<!-- TODO(user): abstract this out if we add more buttons. -->
<a class="edit">
<div><div></div><div><div>Edit on GitHub</div></div></div>
</a>
</footer>
<script>
window['_JEKYLL_DATA'] = {
'page.ga': '{{page.ga}}',
'page.section': '{{page.section}}',
{% if page.toc.max %}'page.toc.max': {{page.toc.max}},{% endif %}
{% if page.toc.min %}'page.toc.min': {{page.toc.min}},{% endif %}
'site.baseurl': '{{site.baseurl}}',
'': ''
};
</script>
<script src="{{site.baseurl}}/js/article.js"></script>
<script>closure.docs.initialize();</script>
</body>
|