Developer Docs

PAGEGRID is a visual site builder for the ProcessWire CMS. It bridges visual layout editing with an intuitive PHP API, giving you total control over rendered HTML, template architecture, and frontend output without proprietary abstractions or lock-in.

<?php 
// site/templates/blocks/card.php
?>
<div class="card">
    <h3><?= $page->title ?></h3>
    <p><?= $page->description ?></p>
    <?php if ($page->link): ?>
        <a href="<?= $page->link->url ?>"><?= $page->link_title ?></a>
    <?php endif; ?>
</div>

Ready to build?

Get Started by installing PAGEGRID.