$pages

Returns the current application pages.

Table of Contents
  1. Description
  2. Example

Description

This variable is an instance of the Pages class.

Example

<?php if ($pages->count): ?>
  <?php foreach ($pages as $page): ?>
    <article id="page:<?= eat($page->id); ?>">
      <h3>
        <a href="<?= eat($page->link ?? $page->url); ?>">
          <?= $page->title; ?>
        </a>
      </h3>
      <p>
        <?= $page->description; ?>
      </p>
    </article>
  <?php endforeach; ?>
<?php else: ?>
  <p role="status">
    <?php if ($site->has('part')): ?>
      <?= i('No more %s to show.', 'pages'); ?>
    <?php else: ?>
      <?= i('No %s yet.', 'pages'); ?>
    <?php endif; ?>
  </p>
<?php endif; ?>

$page

Returns the current application page.

$pager

Returns the current application pagination.

$pages

Returns the current application pages.