403.php 478 B

1234567891011121314151617
  1. <?php
  2. $bodyclasses = '403 error page';
  3. $title = '403';
  4. $tagline = 'Stop right there';
  5. $description = 'Yep, you are looking at something you should not be looking at.';
  6. ?>
  7. <?=i('_header')?>
  8. <article class="body grid grid-cols-1 sm:grid-cols-2 gap-x-6 gap-y-0">
  9. <section class="full col-start-1 sm:col-span-2">
  10. <p>Sorry, you are looking at something you should not be looking at.</p>
  11. <p>I'm afraid I must terminate you.</p>
  12. </section>
  13. </article>
  14. <?=i('_footer')?>