overview.php
28 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Lesson overview template. |
| 4 | * |
| 5 | * @package Tutor\Templates |
| 6 | * @subpackage Single\Lesson |
| 7 | * @author Themeum <support@themeum.com> |
| 8 | * @link https://themeum.com |
| 9 | * @since 3.9.0 |
| 10 | */ |
| 11 | |
| 12 | if ( ! defined( 'ABSPATH' ) ) { |
| 13 | exit; |
| 14 | } |
| 15 | ?> |
| 16 | <div id="tutor-course-spotlight-overview" class="tutor-tab-item<?php echo esc_attr( $is_active ? ' is-active' : '' ); ?>"> |
| 17 | <div class="tutor-container"> |
| 18 | <div class="tutor-row tutor-justify-center"> |
| 19 | <div class="tutor-col-xl-8"> |
| 20 | <?php do_action( 'tutor_lesson_before_the_content', $post, $course_id ); ?> |
| 21 | <div class="tutor-fs-6 tutor-color-secondary tutor-lesson-wrapper"> |
| 22 | <?php the_content(); ?> |
| 23 | </div> |
| 24 | </div> |
| 25 | </div> |
| 26 | </div> |
| 27 | </div> |
| 28 |