ecommerce
1 year ago
tools
1 year ago
add_new_instructor.php
2 years ago
addons.php
1 year ago
announcements.php
2 years ago
answer.php
3 years ago
course-builder.php
1 year ago
course-list.php
1 year ago
enable_disable_addons.php
1 year ago
feature-promotion.php
2 years ago
get-pro.php
2 years ago
instructors.php
1 year ago
question_answer.php
2 years ago
quiz_attempts.php
3 years ago
students.php
3 years ago
tools.php
3 years ago
view_attempt.php
3 years ago
welcome.php
1 year ago
whats-new.php
1 year ago
withdraw_requests.php
2 years ago
course-builder.php
33 lines
| 1 | <?php |
| 2 | /** |
| 3 | * View for course builder. |
| 4 | * |
| 5 | * @package Tutor\Views |
| 6 | * @subpackage Pages |
| 7 | * @author Themeum <support@themeum.com> |
| 8 | * @link https://themeum.com |
| 9 | * @since 3.0.0 |
| 10 | */ |
| 11 | |
| 12 | if ( ! defined( 'ABSPATH' ) ) { |
| 13 | exit; |
| 14 | } |
| 15 | ?> |
| 16 | |
| 17 | <!DOCTYPE html> |
| 18 | <html <?php language_attributes(); ?>> |
| 19 | <head> |
| 20 | <meta charset="<?php bloginfo( 'charset' ); ?>"> |
| 21 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 22 | |
| 23 | <title><?php esc_html_e( 'Tutor Course Builder', 'tutor' ); ?></title> |
| 24 | |
| 25 | <?php wp_head(); ?> |
| 26 | </head> |
| 27 | <body <?php body_class(); ?>> |
| 28 | <div id="tutor-course-builder"></div> |
| 29 | <?php do_action( 'tutor_course_builder_footer' ); ?> |
| 30 | <?php wp_footer(); ?> |
| 31 | </body> |
| 32 | </html> |
| 33 |