<?php
/**
 * The template for displaying all pages
 *
 * @package Proto_Previewer
 */

if (!defined('ABSPATH')) exit;

get_header();
?>

<main id="primary" class="site-main">
    <div class="site-container">
        
        <?php while (have_posts()) : the_post(); ?>
            <article id="post-<?php the_ID(); ?>" <?php post_class(); ?> style="background: #fff; border-radius: 1rem; border: 1px solid #e2e8f0; padding: 2.5rem;">
                <header class="entry-header" style="margin-bottom: 2rem; border-bottom: 1px solid #f1f5f9; padding-bottom: 1rem;">
                    <h1 class="entry-title" style="margin: 0;"><?php the_title(); ?></h1>
                </header>

                <div class="entry-content">
                    <?php the_content(); ?>
                </div>
            </article>
        <?php endwhile; ?>

    </div>
</main>

<?php
get_footer();
