opigno-learning-path-training-content.html.twig in Opigno Learning path 3.x
Same filename and directory in other branches
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.
1 theme call to opigno-learning-path-training-content.html.twig
- LearningPathController::trainingContent in src/
Controller/ LearningPathController.php - Training content.
File
templates/opigno-learning-path-training-content.html.twigView source
- {#
- /**
- * @file
- * 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.
- */
- #}
- <div id="training-content-wrapper" class="col-12">
- {{ content }}
- </div>