dashboard
7 years ago
email
7 years ago
global
7 years ago
loop
7 years ago
profile
7 years ago
single
7 years ago
archive-course.php
7 years ago
course-none.php
7 years ago
dashboard.php
7 years ago
login.php
7 years ago
single-course-enrolled-announcements.php
7 years ago
single-course-enrolled-overview.php
7 years ago
single-course-enrolled-questions.php
7 years ago
single-course-enrolled.php
7 years ago
single-course.php
7 years ago
single-lesson.php
7 years ago
single-preview-lesson.php
7 years ago
single-quiz.php
7 years ago
student-public-profile.php
7 years ago
single-course.php
52 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Template for displaying single course |
| 4 | * |
| 5 | * @since v.1.0.0 |
| 6 | * |
| 7 | * @author Themeum |
| 8 | * @url https://themeum.com |
| 9 | */ |
| 10 | |
| 11 | get_header(); |
| 12 | ?> |
| 13 | |
| 14 | |
| 15 | <?php do_action('tutor_course/single/before/wrap'); ?> |
| 16 | |
| 17 | |
| 18 | <div <?php tutor_post_class('tutor-full-width-course-top tutor-course-top-info tutor-page-wrap'); ?>> |
| 19 | <div class="tutor-container"> |
| 20 | <div class="tutor-row"> |
| 21 | <div class="tutor-col-8"> |
| 22 | |
| 23 | <?php do_action('tutor_course/single/before/inner-wrap'); ?> |
| 24 | |
| 25 | <?php tutor_course_lead_info(); ?> |
| 26 | <?php tutor_course_benefits_html(); ?> |
| 27 | <?php tutor_course_topics(); ?> |
| 28 | <?php tutor_course_content(); ?> |
| 29 | <?php tutor_course_instructors_html(); ?> |
| 30 | <?php tutor_course_target_reviews_html(); ?> |
| 31 | |
| 32 | <?php do_action('tutor_course/single/after/inner-wrap'); ?> |
| 33 | |
| 34 | </div> <!-- .tutor-col-8 --> |
| 35 | |
| 36 | <div class="tutor-col-4"> |
| 37 | <div class="tutor-single-course-sidebar"> |
| 38 | <?php tutor_course_enroll_box(); ?> |
| 39 | <?php tutor_course_requirements_html(); ?> |
| 40 | <?php tutor_course_tags_html(); ?> |
| 41 | <?php tutor_course_target_audience_html(); ?> |
| 42 | </div> |
| 43 | </div> |
| 44 | </div> |
| 45 | </div> |
| 46 | </div> |
| 47 | |
| 48 | <?php do_action('tutor_course/single/after/wrap'); ?> |
| 49 | |
| 50 | <?php |
| 51 | get_footer(); |
| 52 |