You are here

bynder-search-item.html.twig in Bynder 8.3

Default theme implementation for the Bynder search result item.

Available variables:

  • thumbnail_uri: Link to the thumbnail of the bynder asset.
  • name: Name of the bynder asset.
  • type: Type of the bydner asset.

File

templates/bynder-search-item.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for the Bynder search result item.
  5. *
  6. * Available variables:
  7. * - thumbnail_uri: Link to the thumbnail of the bynder asset.
  8. * - name: Name of the bynder asset.
  9. * - type: Type of the bydner asset.
  10. */
  11. #}
  12. <img src="{{ thumbnail_uri }}" alt="{{ name }}"/>
  13. <div class="more-info">
  14. <h4 class="name">{{ name }}</h4>
  15. <div class="type">({{ type }})</div>
  16. </div>