You are here

faqfield-simple-text-formatter.html.twig in FAQ Field 8

Same filename and directory in other branches
  1. 2.0.x templates/faqfield-simple-text-formatter.html.twig

Default theme implementation of a FAQ Field simple text formatter.

Available variables:

  • question: Prefiltered question value by check_plain.
  • answer: Prefiltered answer value by field setting format.
  • delta: Delta # of field element.

File

templates/faqfield-simple-text-formatter.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation of a FAQ Field simple text formatter.
  5. *
  6. * Available variables:
  7. * - question: Prefiltered question value by check_plain.
  8. * - answer: Prefiltered answer value by field setting format.
  9. * - delta: Delta # of field element.
  10. *
  11. * @see template_preprocess()
  12. * @see template_preprocess_faqfield_simple_text_formatter()
  13. *
  14. * @ingroup themeable
  15. */
  16. #}
  17. {% spaceless %}
  18. <h3 class="faqfield-question">{{ question }}</h3>
  19. <div class="faqfield-answer">{{ answer }}</div>
  20. {% endspaceless %}