summaryrefslogtreecommitdiffstats
path: root/docs/components/ui/Tabs/ManualHTML.jinja
blob: 1a39f357c661eb9fe036cee609f2e44c83f1c372 (plain)
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
{% filter markdown %}{% raw %}
```html+jinja
<TabGroup>
  <TabList manual>
    <Tab target="manual-recent" selected>Recent</Tab>
    <Tab target="manual-popular">Popular</Tab>
    <Tab target="manual-disabled" disabled>Disabled</Tab>
    <Tab target="manual-trending">Trending</Tab>
  </TabList>

  <TabPanel id="manual-recent">
    <p>This is the tab panel for <b>"Recent"</b>.</p>
  </TabPanel>

  <TabPanel id="manual-popular" hidden>
    <p>This is the tab panel for <b>"Popular"</b>.</p>
  </TabPanel>

  <TabPanel id="manual-disabled" hidden>
    <p>This is the tab panel for "Disabled".</p>
  </TabPanel>

  <TabPanel id="manual-trending" hidden>
    <p>This is the tab panel for <b>"Trending"</b>.</p>
  </TabPanel>
</TabGroup>
```
{% endraw %}{% endfilter %}