sweedy/woocommerce/pdf/sweedy/html-document-wrapper.php
2018-11-22 11:32:45 +00:00

13 lines
493 B
PHP

<?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly ?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title><?php echo $this->get_title(); ?></title>
<style type="text/css"><?php $this->template_styles(); ?></style>
<style type="text/css"><?php do_action( 'wpo_wcpdf_custom_styles', $this->get_type(), $this ); ?></style>
</head>
<body class="<?php echo $this->get_type(); ?>">
<?php echo $content; ?>
</body>
</html>