2024-06-16 20:33:37 +03:00
|
|
|
<!doctype html>
|
|
|
|
|
<html amp>
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<script async src="https://cdn.ampproject.org/v0.js"></script>
|
|
|
|
|
<title><?php the_title(); ?></title>
|
|
|
|
|
<link rel="canonical" href="<?php echo esc_url(get_permalink()); ?>">
|
|
|
|
|
<meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
|
|
|
|
|
<style amp-custom>
|
2024-06-17 11:30:05 +03:00
|
|
|
body {
|
|
|
|
|
font-family: Arial, sans-serif;
|
|
|
|
|
padding: 20px;
|
|
|
|
|
}
|
|
|
|
|
h1 {
|
|
|
|
|
color: #333;
|
|
|
|
|
}
|
|
|
|
|
img {
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
height: auto;
|
|
|
|
|
}
|
2024-06-16 20:33:37 +03:00
|
|
|
</style>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<article>
|
|
|
|
|
<header>
|
|
|
|
|
<h1><?php the_title(); ?></h1>
|
|
|
|
|
</header>
|
|
|
|
|
<div>
|
|
|
|
|
<?php
|
|
|
|
|
while (have_posts()) : the_post();
|
|
|
|
|
the_content();
|
|
|
|
|
endwhile;
|
|
|
|
|
?>
|
|
|
|
|
</div>
|
|
|
|
|
</article>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|