index.php
25 lines
| 1 | <?php |
| 2 | |
| 3 | // same as default WP from wp-admin/admin-header.php. |
| 4 | $wp_version_class = 'branch-' . str_replace( [ '.', ',' ], '-', floatval( get_bloginfo( 'version' ) ) ); |
| 5 | |
| 6 | set_current_screen(); |
| 7 | ?> |
| 8 | |
| 9 | <!DOCTYPE html> |
| 10 | <html <?php language_attributes(); ?>> |
| 11 | <head> |
| 12 | <meta name="viewport" content="width=device-width" /> |
| 13 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
| 14 | <title><?php esc_html_e( 'GiveWP › Onboarding Wizard', 'give' ); ?></title> |
| 15 | <?php do_action( 'admin_enqueue_scripts' ); ?> |
| 16 | <?php do_action( 'admin_print_styles' ); ?> |
| 17 | <?php do_action( 'admin_print_scripts' ); ?> |
| 18 | <?php do_action( 'admin_head' ); ?> |
| 19 | </head> |
| 20 | <body class="<?php echo esc_attr( $wp_version_class ); ?>"> |
| 21 | <div id="onboarding-wizard-app"></div> |
| 22 | <?php do_action( 'admin_print_footer_scripts' ); ?> |
| 23 | </body> |
| 24 | </html> |
| 25 |