| 1 |
<?php |
| 2 |
|
| 3 |
namespace WPAdminify\Inc\Admin\Frames\Templates; |
| 4 |
|
| 5 |
use WPAdminify\Inc\Admin\AdminSettings; |
| 6 |
// no direct access allowed |
| 7 |
if ( !defined( 'ABSPATH' ) ) { |
| 8 |
exit; |
| 9 |
} |
| 10 |
$favicon = ''; |
| 11 |
if ( function_exists( 'get_site_icon_url' ) ) { |
| 12 |
$favicon = get_site_icon_url(); |
| 13 |
} |
| 14 |
?> |
| 15 |
<!DOCTYPE html> |
| 16 |
<html lang="en"> |
| 17 |
<head> |
| 18 |
<meta charset="UTF-8"> |
| 19 |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 20 |
<link rel='shortcut icon' href='<?php |
| 21 |
echo esc_url( $favicon ); |
| 22 |
?>' type='image/x-icon'></link> |
| 23 |
</head> |
| 24 |
<body> |
| 25 |
<div id="frame-adminify-app" class="frame-adminify-app"></div> |
| 26 |
</body> |
| 27 |
</html> |
| 28 |
<?php |