-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathparent_landing_page.html
More file actions
32 lines (27 loc) · 981 Bytes
/
parent_landing_page.html
File metadata and controls
32 lines (27 loc) · 981 Bytes
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
---
layout: default
---
<div class="post-header">
<h1 class="post-title-main">{{ page.title }}</h1>
</div>
<div class="post-content">
{% unless page.toc == false %}
{% include toc.html %}
{% endunless %}
{{content}}
<p>{{page.summary}}</p>
<strong>Table of Contents</strong>
{% for entry in site.data.sidebars[page.sidebar].entries[0].folders %}
{% if entry.type != 'navi' and entry.type != 'frontmatter' and entry.title %}
<ul>
<li><strong><a href="{{ entry.url }}">{{ entry.title }}</a></strong>
<ul>
{% for item in entry.folderitems %}
<li><a href="{{ item.url }}">{{ item.title }}</a>{% if item.deprecated %}<span class="apideprecated-inline">deprecated</span>{% elsif item.preview %}<span class="apipreview-inline">preview</span>{% endif %}</li>
{% endfor %}
</ul>
</li>
</ul>
{% endif %}
{% endfor %}
</div>