13 lines
553 B
PHP
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>
|