You are here

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

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

Default theme implementation to display the training content.

Available variables:

  • content: All training content items. Use {{ content }} to print them all, or print a subset such as {{ content.tabs }}. Use {{ content|without('tabs') }} to temporarily suppress the printing of a given child element.

File

templates/opigno-learning-path-training-content.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation to display the training content.
  5. *
  6. * Available variables:
  7. * - content: All training content items. Use {{ content }} to print them all,
  8. * or print a subset such as {{ content.tabs }}. Use
  9. * {{ content|without('tabs') }} to temporarily suppress the
  10. * printing of a given child element.
  11. */
  12. #}
  13. <div id="training-content-wrapper" class="col-12">
  14. {{ content }}
  15. </div>