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