{% for tab in page.ui_tabs %}
-
{% capture thistab %}{% include_relative {{ page.path | split: "/" | last }} version=tab.version ui="true" %}{% endcapture %}{{ thistab | split: "---" | shift:2 | join: "---" | markdownify }}
{% endfor %}
-
+ {% if page.intro %}{{ page.intro | markdownify }}{% else %}{{ page.description | markdownify }}{% endif %}
- {% endif %}
- {% if page.cli_tabs %}
+ {% if page.ui_tabs %}
+ {% for tab in page.ui_tabs %}
+
{% capture thistab %}{% include_relative {{ page.path | split: "/" | last }} version=tab.version ui="true" %}{% endcapture %}{{ thistab | split: "---" | shift:2 | join: "---" | markdownify }}
{% endfor %}
+
+ {% endif %}
+ {% if page.cli_tabs %}
+ {% for tab in page.cli_tabs %}
+
{% capture thistab %}{% include_relative {{ page.path | split: "/" | last }} version=tab.version cli="true" %}{% endcapture %}{{ thistab | split: "---" | shift:2 | join: "---" | markdownify }}
{% endfor %}
+
+ {% endif %}
+ {% if page.api_tabs %}
+ {% for tab in page.api_tabs %}
+
{% capture thistab %}{% include_relative {{ page.path | split: "/" | last }} version=tab.version api="true" %}{% endcapture %}{{ thistab | split: "---" | shift:2 | join: "---" | markdownify }}
{% endfor %}
+
+ {% endif %}
+ {% if page.next_steps %}
+