HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: /var/www/html/appointmentbook.me/wp-content/plugins/booknetic-saas/app/Frontend/view/iframe.php
<?php

defined('ABSPATH') or die();

use BookneticSaaS\Providers\Helpers\Helper;

/**
 * Template Name: Booknetic SaaS Booking page Iframe
 *
 * @package WordPress
 */

?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
<head>
	<link rel="profile" href="http://gmpg.org/xfn/11" />
	<meta http-equiv="Content-Type" content="<?php bloginfo( 'html_type' ); ?>; charset=<?php bloginfo( 'charset' ); ?>" />
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<title><?php echo wp_get_document_title(); ?></title>
	<link rel="stylesheet" href="<?php echo Helper::assets( 'css/iframe.css', 'front-end' ) ?>" type="text/css" media="screen" />
</head>
<body>

	<?php

	while ( have_posts() )
	{
		the_post();
		the_content();
	}

	print_late_styles();
	print_footer_scripts();

	?>

</body>
</html>