You are here

patterns-variant-meta-information.html.twig in UI Patterns 8

UI Pattern variant meta information.

File

modules/ui_patterns_library/templates/patterns-variant-meta-information.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * UI Pattern variant meta information.
  5. */
  6. #}
  7. {% if variant is not empty %}
  8. <table class="pattern-preview__variants pattern-preview__variants--{{ variant.name }}">
  9. <thead>
  10. <tr>
  11. <th>{{ "Variant"|t }}</th>
  12. <th>{{ "Name"|t }}</th>
  13. <th>{{ "Description"|t }}</th>
  14. </tr>
  15. </thead>
  16. <tbody>
  17. <tr>
  18. <td>{{ variant.label }}</td>
  19. <td><code>{{ variant.name }}</code></td>
  20. <td>{{ variant.description }}</td>
  21. </tr>
  22. </tbody>
  23. </table>
  24. {% endif %}