You are here

opigno-learning-path-training-course-content.html.twig in Opigno Learning path 3.x

Same filename and directory in other branches
  1. 8 templates/opigno-learning-path-training-course-content.html.twig

Default theme implementation to display the training elements.

Available variables:

  • #course_id: Course id.
  • elements: The training elements.

File

templates/opigno-learning-path-training-course-content.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation to display the training elements.
  5. *
  6. * Available variables:
  7. * - #course_id: Course id.
  8. * - elements: The training elements.
  9. */
  10. #}
  11. <div id="{{ 'course_steps_' ~ elements['#course_id'] }}"
  12. class="lp_course_steps_wrapper">
  13. {{ elements }}
  14. </div>