mirror of
https://github.com/tabler/tabler.git
synced 2026-08-02 00:14:38 +04:00
36 lines
735 B
Markdown
36 lines
735 B
Markdown
---
|
|
title: Flags
|
|
menu: docs.flags
|
|
plugin: flags
|
|
done: true
|
|
---
|
|
|
|
### Flag
|
|
|
|
{% example html %}
|
|
{% include ui/flag.html name="tg" class="mr-1" %}
|
|
{% include ui/flag.html name="br" class="mr-1" %}
|
|
{% include ui/flag.html name="pt" %}
|
|
{% endexample %}
|
|
|
|
### Flag sizes
|
|
|
|
{% example html %}
|
|
{% include ui/flag.html name="pl" class="flag-size-xl mr-1" %}
|
|
{% include ui/flag.html name="pl" class="flag-size-lg mr-1" %}
|
|
{% include ui/flag.html name="pl" class="flag-size-md" %}
|
|
{% include ui/flag.html name="pl" class="mr-1" %}
|
|
{% endexample %}
|
|
|
|
### Types
|
|
|
|
<table>
|
|
{% for flag in site.data.flags %}
|
|
<tr>
|
|
<td>{% include ui/flag.html name=flag.flag %}</td>
|
|
<td><code>{{ flag.flag }}</code></td>
|
|
<td>{{ flag.name }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|