You are here

freelink-error.html.twig in Freelinking 8.3

Same filename and directory in other branches
  1. 4.0.x templates/freelink-error.html.twig

Default theme implementation for displaying freelinking errors.

Available variables:

  • attributes: HTML attributes for the main element.
  • message: The error message.
  • plugin: The plugin that caused the error.

See also

template_preprocess_freelink_error()

File

templates/freelink-error.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for displaying freelinking errors.
  5. *
  6. * Available variables:
  7. * - attributes: HTML attributes for the main element.
  8. * - message: The error message.
  9. * - plugin: The plugin that caused the error.
  10. *
  11. * @see template_preprocess_freelink_error()
  12. *
  13. * @ingroup themeable
  14. */
  15. #}
  16. <code {{ attributes }}>
  17. {{ 'Freelinking' | trans }}: {{ message }} {{ indicator }}
  18. </code>