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

article.html 3.4 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
77
78
79
80
81
82
83
84
85
86
87
88
  1. <div class="container-xl px-3 px-md-6 my-4 my-lg-4 d-xl-flex">
  2. <article class="markdown-body width-full">
  3. <div class="d-lg-flex flex-justify-between">
  4. <div class="d-block d-lg-none">{% include article-version-switcher %}</div>
  5. <div class="d-flex flex-items-center breadcrumbs-wrapper">
  6. {% include breadcrumbs %}
  7. </div>
  8. <div class="d-none d-lg-block">{% include article-version-switcher %}</div>
  9. </div>
  10. <div class="mt-2 article-grid-container">
  11. <div class="article-grid-head">
  12. <div class="d-flex flex-items-baseline flex-justify-between mt-3">
  13. <h1 class="border-bottom-0">{{ page.title }}</h1>
  14. <div class="d-none d-lg-block ml-2">
  15. <button class="btn-link Link--secondary js-print tooltipped tooltipped-n" aria-label="Print this article">
  16. {% include printer-icon %}
  17. </button>
  18. </div>
  19. </div>
  20. {% if page.contributor %}
  21. <div class="contributor-callout border rounded-1 mb-4 p-3 color-border-info color-bg-info f5">
  22. <p><span class="mr-2">{% octicon "info" %}</span>{% data ui.pages.contributor_callout %} <a href="{{ page.contributor.URL }}">{{ page.contributor.name }}</a>.</p>
  23. </div>
  24. {% endif %}
  25. {% if page.intro %}
  26. <div class="lead-mktg">{{ page.intro }}</div>
  27. {% endif %}
  28. {% if page.permissions %}
  29. <div class="permissions-statement">{{ page.permissions }}</div>
  30. {% endif %}
  31. {% if page.includesPlatformSpecificContent %}
  32. <nav class="UnderlineNav my-3"
  33. {%- if page.defaultPlatform %} data-default-platform="{{ page.defaultPlatform }}"{% endif %}>
  34. <div class="UnderlineNav-body">
  35. <a href="#" class="UnderlineNav-item platform-switcher" data-platform="mac">Mac</a>
  36. <a href="#" class="UnderlineNav-item platform-switcher" data-platform="windows">Windows</a>
  37. <a href="#" class="UnderlineNav-item platform-switcher" data-platform="linux">Linux</a>
  38. </div>
  39. </nav>
  40. {% endif %}
  41. {% if page.product %}
  42. <div class="product-callout border rounded-1 mb-4 p-3 color-border-success color-bg-success">
  43. {{ page.product }}
  44. </div>
  45. {% endif %}
  46. </div>
  47. <div class="article-grid-toc border-bottom border-xl-0 pb-4 mb-5 pb-xl-0 mb-xl-0">
  48. <div class="article-grid-toc-content">
  49. {% if miniTocItems.size > 1 %}
  50. <h2 id="in-this-article" class="f5 mb-2"><a class="Link--primary" href="#in-this-article">{% data ui.pages.miniToc %}</a></h2>
  51. <ul class="list-style-none pl-0 f5 mb-0">
  52. {% for item in miniTocItems %}
  53. <li class="ml-{{ item.indentationLevel | times: 3 }} {{ item.platform }} mb-2 lh-condensed">{{ item.contents }}</li>
  54. {% endfor %}
  55. </ul>
  56. {% endif %}
  57. </div>
  58. </div>
  59. <div id="article-contents" class="article-grid-body">
  60. {% if featuredLinks.gettingStarted and featuredLinks.popular %}
  61. {% include featured-links %}
  62. {% endif %}
  63. {{ renderedPage }}
  64. {% if genericTocFlat %}
  65. {% include generic-toc-flat %}
  66. {% endif %}
  67. {% if genericTocNested %}
  68. {% include generic-toc-nested %}
  69. {% endif %}
  70. </div>
  71. </div>
  72. <div class="d-block mt-4 markdown-body">
  73. {% if currentLearningTrack and currentLearningTrack.trackName %}
  74. {% include learning-track-nav %}
  75. {% endif %}
  76. </div>
  77. </article>
  78. </div>
Tip!

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

Comments

Loading...