-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path05-documentation.html
More file actions
53 lines (47 loc) · 1.21 KB
/
05-documentation.html
File metadata and controls
53 lines (47 loc) · 1.21 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
---
layout: page
title: Documentation
permalink: /documentation
---
<div class="center" style="margin-top: 3em;">
Most people who go here just want to find the
<h2>
Latest
<i class="fa fa-book" aria-hidden="true"></i>
<a class="fancyLink" href="docs/{{ site.docs[0] }}/html" target="_blank">
Reference docs
</a>
and
<i class="fa fa-gears" aria-hidden="true"></i>
<a class="fancyLink" href="docs/{{ site.docs[0] }}/components" target="_blank">
Components
</a>
</h2>
</div>
<hr />
<h3>Reference documentation archive</h3>
<div class="tableContainer">
<table class="downloadTable">
{% for doc_version in site.docs %}
<tr>
<td class="versionName">
{{ doc_version }}
</td>
<td>
<i class="fa fa-globe" aria-hidden="true"></i>
<a href="docs/{{doc_version}}/html" target="_blank">HTML</a>
</td>
<td>
<i class="fa fa-book" aria-hidden="true"></i>
<a href="docs/{{doc_version}}/html_single" target="_blank">HTML single</a>
</td>
<td>
{% if doc_version != "5.2" %}
<i class="fa fa-gears" aria-hidden="true"></i>
<a href="docs/{{doc_version}}/components" target="_blank">Components</a>
{% endif %}
</td>
</tr>
{% endfor %}
</table>
</div>