5c22ce57dc
BREAKING CHANGE: Layout file renamed ´layouts/partials/page-footer.html → layouts/partials/menu-nextprev.html`. If you use overrides, you might need to change the filenames as well.
54 lines
1.5 KiB
Markdown
54 lines
1.5 KiB
Markdown
---
|
|
title: Tabs
|
|
---
|
|
|
|
Tabs let you organize content by context, for example installation instructions for each supported platform.
|
|
|
|
<!-- prettier-ignore-start -->
|
|
```tpl
|
|
{{</* tabs "uniqueid" */>}}
|
|
{{</* tab "macOS" */>}} # macOS Content {{</* /tab */>}}
|
|
{{</* tab "Linux" */>}} # Linux Content {{</* /tab */>}}
|
|
{{</* tab "Windows" */>}} # Windows Content {{</* /tab */>}}
|
|
{{</* /tabs */>}}
|
|
```
|
|
<!-- prettier-ignore-end -->
|
|
|
|
## Example
|
|
|
|
{{< tabs "uniqueid" >}}
|
|
{{< tab "macOS" >}}
|
|
|
|
## macOS
|
|
|
|
This is tab **macOS** content.
|
|
|
|
Dolor sit, sumo unique argument um no. Gracie nominal id xiv. Romanesque acclimates
|
|
investiture. Ornateness bland it ex enc, est yeti am bongo detract re. Pro ad
|
|
prompts feud gait, quid exercise emeritus bis e. In pro quints consequent, denim
|
|
fastidious copious quo ad. Stet probates in duo.
|
|
{{< /tab >}}
|
|
|
|
{{< tab "Linux" >}}
|
|
|
|
## Linux
|
|
|
|
This is tab **Linux** content.
|
|
|
|
Dolor sit, sumo unique argument um no. Gracie nominal id xiv. Romanesque acclimates
|
|
investiture. Ornateness bland it ex enc, est yeti am bongo detract re. Pro ad
|
|
prompts feud gait, quid exercise emeritus bis e. In pro quints consequent, denim
|
|
fastidious copious quo ad. Stet probates in duo.
|
|
{{< /tab >}}
|
|
|
|
{{< tab "Windows" >}}
|
|
|
|
## Windows
|
|
|
|
This is tab **Windows** content.
|
|
|
|
Dolor sit, sumo unique argument um no. Gracie nominal id xiv. Romanesque acclimates
|
|
investiture. Ornateness bland it ex enc, est yeti am bongo detract re. Pro ad
|
|
prompts feud gait, quid exercise emeritus bis e. In pro quints consequent.
|
|
{{< /tab >}}
|
|
{{< /tabs >}}
|