You are here

readmore.html.twig in Readmore 8

Same filename and directory in other branches
  1. 2.x templates/readmore.html.twig

readmore.html.twig

Available variables:

  • summary: Truncated string
  • text: All text

File

templates/readmore.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * readmore.html.twig
  5. *
  6. * Available variables:
  7. * - summary: Truncated string
  8. * - text: All text
  9. */
  10. #}
  11. <div class="readmore-summary">
  12. {{ summary }}
  13. </div>
  14. <div class="readmore-text">
  15. {{ text }}
  16. </div>