cva.twig

Same filename and directory in other branches
  1. 11.x core/modules/system/tests/themes/sdc_theme_test/components/cva/cva.twig
{% set cva =
  html_cva(
    base: [
      'cva-friendliness'
    ],
    variants: {
      friendliness: {
        nice: 'friendly',
        mean: 'unfriendly',
      }
    }
  )
%}
<div class="{{ cva.apply({ friendliness: friendliness }) }}"></div>

File

core/modules/system/tests/themes/sdc_theme_test/components/cva/cva.twig

View source
  1. {% set cva =
  2. html_cva(
  3. base: [
  4. 'cva-friendliness'
  5. ],
  6. variants: {
  7. friendliness: {
  8. nice: 'friendly',
  9. mean: 'unfriendly',
  10. }
  11. }
  12. )
  13. %}
  14. <div class="{{ cva.apply({ friendliness: friendliness }) }}"></div>

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.