You are here

shortcode-dropcap.html.twig in Shortcode 2.0.x

Same filename and directory in other branches
  1. 8 shortcode_basic_tags/templates/shortcode-dropcap.html.twig

Default theme implementation for the dropcap shortcode.

Available variables:

  • class: Class string.
  • text: The quoted text.

File

shortcode_basic_tags/templates/shortcode-dropcap.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for the dropcap shortcode.
  5. *
  6. * Available variables:
  7. * - class: Class string.
  8. * - text: The quoted text.
  9. */
  10. #}
  11. <span class="{{ class }}">{{ text }}</span>