base tabler
This commit is contained in:
parent
ac2cfa9fe1
commit
0f84beacf1
1432 changed files with 28760 additions and 1 deletions
22
liquid/includes/docs/tabs-package.html
Normal file
22
liquid/includes/docs/tabs-package.html
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
<ul class="nav nav-bordered mb-2" role="tablist">
|
||||
{%- for manager in package-managers -%}
|
||||
<li class="nav-item" role="presentation">
|
||||
<button class="nav-link{% if forloop.index == 1 %} active{% endif %}" id="{{ manager.name }}-tab" data-bs-toggle="tab" data-bs-target="#{{ manager.name }}" type="button" role="tab"
|
||||
aria-controls="home" aria-selected="{% if forloop.index == 1 %}true{% else %}false{% endif %}">
|
||||
{{ manager.icon | replace: '<svg ', '<svg class="me-2" ' }}
|
||||
{{ manager.name }}
|
||||
</button>
|
||||
</li>
|
||||
{%- endfor -%}
|
||||
</ul>
|
||||
<div class="tab-content">
|
||||
{%- for manager in package-managers -%}
|
||||
<div class="tab-pane{% if forloop.index == 1 %} show active{% endif %}" id="{{ manager.name }}" role="tabpanel" aria-labelledby="{{ manager.name }}-tab">
|
||||
|
||||
```bash
|
||||
{{ manager.command }} {{ manager.install }} {{ include.name }}
|
||||
```
|
||||
|
||||
</div>
|
||||
{%- endfor -%}
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue