bootstrap_italia-8.x-0.x-dev/patterns/patterns-variant-meta-information.html.twig
patterns/patterns-variant-meta-information.html.twig
{#
/**
* @file
* UI Pattern variant meta information.
*/
#}
{% if variant is not empty %}
<div class="table-responsive mb-2">
<table class="table table-sm pattern-preview__variants pattern-preview__variants--{{ variant.name }} mt-5">
<thead>
<tr>
<th>{{ "Variant"|t }}</th>
<th>{{ "Name"|t }}</th>
<th>{{ "Description"|t }}</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{ variant.label }}</td>
<td><code>{{ variant.name }}</code></td>
<td>{{ variant.description }}</td>
</tr>
</tbody>
</table>
</div>
{% endif %}
