<?php
/**
 * Template personalizado para evitar erros de stream inseguro
 */
?>
<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <style>
        body { font-family: Helvetica, sans-serif; font-size: 12pt; line-height: 1.5; color: #333; }
        h1 { color: #000; border-bottom: 1px solid #ccc; padding-bottom: 10px; }
        .ficha-conteudo { margin-top: 20px; }
    </style>
</head>
<body>
    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
        <h1><?php the_title(); ?></h1>
        <div class="ficha-conteudo">
            <?php the_content(); ?>
        </div>
    <?php endwhile; endif; ?>
</body>
</html>

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: