You are here

opigno-learning-path-training.html.twig in Opigno Learning path 8

Same filename and directory in other branches
  1. 3.x templates/opigno-learning-path-training.html.twig

Default theme implementation to display the training elements.

Available variables:

  • #label: Training name.
  • elements: The training elements.

File

templates/opigno-learning-path-training.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation to display the training elements.
  5. *
  6. * Available variables:
  7. * - #label: Training name.
  8. * - elements: The training elements.
  9. */
  10. #}
  11. <div class="lp_wrapper">
  12. <h2 class="lp_title px-3 px-md-5 pt-5 pb-4 mb-0 h4 text-uppercase">
  13. {{ 'Training: @label'|t({'@label': elements['#label']}) }}
  14. </h2>
  15. {{ elements }}
  16. </div>