You are here

facets-summary-count.html.twig in Facets 8

Default theme implementation to display source summary block total count.

Available variables:

  • count: The total number of records retrieved.

File

modules/facets_summary/templates/facets-summary-count.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation to display source summary block total count.
  5. *
  6. * Available variables:
  7. * - count: The total number of records retrieved.
  8. */
  9. #}
  10. <span class="source-summary-count">
  11. {% trans %}1 result found{% plural count %}{{ count }} results found{% endtrans %}
  12. </span>