STRATO-apps/wordpress_03/app/wp-content/plugins/aimogen-pro/templates/aiomatic-chat-template.php
SHA-256: edd45d2bf7071678703f2117bdbceb03b86e864265d8e878359a24c6a774f15f
<?php
/*
Template Name: Aimogen Chat Template
Template Post Type: page, aiomatic_remote_chat
*/
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php
while ( have_posts() ) : the_post();
the_content();
endwhile;
?>
</main>
</div>
<?php wp_footer(); ?>
</body>
</html>