oont-contents/plugins/woocommerce-pdf-invoices-packing-slips/templates/Simple/html-document-wrapper.php
2025-04-06 08:34:48 +02:00

13 lines
553 B
PHP

<?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly ?>
<!DOCTYPE html>
<html <?php $this->language_attributes(); ?>>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title><?php $this->title(); ?></title>
<style type="text/css"><?php $this->template_styles(); ?></style>
<style type="text/css"><?php $this->template_custom_styles(); ?></style>
</head>
<body class="<?php $this->body_class(); ?>">
<?php echo $content; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
</body>
</html>