| 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 |
| 11 |
language_attributes(); ?>> |
| 12 |
<head> |
| 13 |
<meta name="viewport" content="width=device-width" /> |
| 14 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
| 15 |
<title><?php |
| 16 |
esc_html_e('GiveWP › Onboarding Wizard', 'give'); ?></title> |
| 17 |
<?php |
| 18 |
do_action('admin_enqueue_scripts'); ?> |
| 19 |
<?php |
| 20 |
do_action('admin_print_styles'); ?> |
| 21 |
<?php |
| 22 |
do_action('admin_print_scripts'); ?> |
| 23 |
<?php |
| 24 |
do_action('admin_head'); ?> |
| 25 |
</head> |
| 26 |
<body class="<?php |
| 27 |
echo esc_attr($wp_version_class); ?>"> |
| 28 |
<div id="onboarding-wizard-app"></div> |
| 29 |
<?php |
| 30 |
do_action('admin_print_footer_scripts'); ?> |
| 31 |
</body> |
| 32 |
</html> |
| 33 |
|