<?php
include 'includes/header.php';
include 'includes/nav.php';

$page = $CONTENT['pages']['about'] ?? [];
?>

<main class="container">

<?php if (($page['enabled'] ?? false) === true): ?>

<section class="hero compact">

    <span class="tag">SOBRE</span>

    <h1>
        <?= htmlspecialchars($page['title'] ?? '') ?>
    </h1>

    <p>
        <?= htmlspecialchars($page['intro'] ?? '') ?>
    </p>

</section>


<section class="section">

    <article class="card wide-card">

        <p>
            <?= nl2br(htmlspecialchars($page['text'] ?? '')) ?>
        </p>

    </article>

</section>

<?php endif; ?>

</main>

<?php include 'includes/footer.php'; ?>