Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

dev-toc.html 2.2 KB

You have to be logged in to leave a comment. Sign In
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
75
76
  1. <!doctype html>
  2. <html lang="{{currentLanguage}}" data-color-mode="$COLORMODE$" data-dark-theme="$DARKTHEME$" data-light-theme="$LIGHTTHEME$">
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>Docs TOC</title>
  6. <link rel="stylesheet" href="{{ builtAssets.main.css }}">
  7. <link rel="alternate icon" type="image/png" href="/assets/images/site/favicon.png">
  8. <link rel="icon" type="image/svg+xml" href="/assets/images/site/favicon.svg">
  9. </head>
  10. <body class="dev-toc p-3 m-3">
  11. <main class="width-full">
  12. <h3>Versions</h3>
  13. <ul class="versions-list">
  14. {% for version in allVersions %}
  15. <li><a href="/{{ version[0] }}/dev-toc">{{ version[1].versionTitle }}</a>
  16. {% endfor %}
  17. </ul>
  18. {% if allVersions[currentVersion] %}
  19. <h2 class="mt-3 mb-3"><abbr>TOC</abbr> for {{ allVersions[currentVersion].versionTitle }}</h2>
  20. <button class="btn mb-3 js-expand" type="button">Expand All</button>
  21. <div/>
  22. {% for product in siteTree[currentLanguage][currentVersion].products %}
  23. <details class="mb-1"><summary>{{product[1].title}}</summary>
  24. <ul class="products-list">
  25. <li title="{{product[1].title}}">
  26. <a href="{{product[1].href}}">{{ product[1].title }}</a>
  27. {% for category in product[1].categories %}
  28. <ul>
  29. <li>
  30. <a href="{{ category[1].href }}">{{ category[1].title }}</a>
  31. <!-- some categories have maptopics with child articles -->
  32. {% if category[1].maptopics %}
  33. <ul>
  34. {% for maptopic in category[1].maptopics %}
  35. {% unless maptopic[1].hidden %}
  36. <li>
  37. <a href="{{ maptopic[1].href }}">{{ maptopic[1].title }}</a>
  38. <ul>
  39. {% for article in maptopic[1].articles %}
  40. <li>
  41. <a href="{{ article[1].href }}">{{ article[1].title }}</a>
  42. </li>
  43. {% endfor %}
  44. </ul>
  45. </li>
  46. {% endunless %}
  47. {% endfor %}
  48. </ul>
  49. <!-- some categories have no maptopics, only articles -->
  50. {% else %}
  51. <ul>
  52. {% for article in category[1].articles %}
  53. <li>
  54. <a href="{{ article[1].href }}">{{ article[1].title }}</a>
  55. </li>
  56. {% endfor %}
  57. </ul>
  58. {% endif %}
  59. </li>
  60. {% endfor %}
  61. </ul>
  62. </li>
  63. </ul>
  64. </details>
  65. {% endfor %}
  66. {% endif %}
  67. {% include scripts %}
  68. </main>
  69. </body>
  70. </html>
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...