forked from slackapi/bolt-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.html
More file actions
64 lines (51 loc) · 1.47 KB
/
default.html
File metadata and controls
64 lines (51 loc) · 1.47 KB
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
---
sidebar_style: main
---
<!DOCTYPE html>
<html>
{% include head.html %}
<body>
{% include tag_manager.html %}
<div class="wrapper">
<div class="panel">
{% include sidebar.html %}
</div>
<div class="content">
<div class="mainheader">
{% include header.html %}
</div>
<div id="basic">
{% assign basic_sections = site.basic | sort: "order" | where: "lang", page.lang %}
{% for section in basic_sections %}
<div class="section-wrapper">
<h3 id="{{section.slug}}">{{ section.title }}</h3>
{{ section.content | markdownify }}
<hr>
</div>
{% endfor %}
</div>
<div id="steps">
{% assign workflow_steps = site.steps | sort: "order" | where: "lang", page.lang %} {% for section in
workflow_steps %}
<div class="section-wrapper">
<h3 id="{{section.slug}}">{{ section.title }}</h3>
{{ section.content | markdownify }}
<hr />
</div>
{% endfor %}
</div>
<div id="advanced">
{% assign advanced_sections = site.advanced | sort: "order" | where: "lang", page.lang %}
{% for section in advanced_sections %}
<div class="section-wrapper">
<h3 id="{{section.slug}}">{{ section.title }}</h3>
{{ section.content | markdownify }}
<hr>
</div>
{% endfor %}
</div>
</div>
</div>
{% include analytics.html %}
</body>
</html>