You are here

language-selection-page-content.html.twig in Language Selection Page 8.2

The body template file of the language_selection_page module.

Available variables:

  • configure_url: the configuration page for the module.
  • destination: url of the page without a language set.
  • language-links: links to the page in all available language.

File

templates/language-selection-page-content.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * The body template file of the language_selection_page module.
  5. *
  6. * Available variables:
  7. * - configure_url: the configuration page for the module.
  8. * - destination: url of the page without a language set.
  9. * - language-links: links to the page in all available language.
  10. */
  11. #}
  12. <div class="language_selection_page_body">
  13. <div class="language_selection_page_body_inner">
  14. <p>No language has been detected and you are coming from <b>{{ destination }}</b></p>
  15. <p>You should go to the page in:</p>
  16. {{ language_links }}
  17. <p>This page is the default page of the module Language Selection Page, you can <a href="{{ configure_url }}">configure the module</a> to alter its behavior.</p>
  18. </div>
  19. </div>