12 lines
205 B
PHP
12 lines
205 B
PHP
<?php
|
|
if ($kirby->session()->get('kpActivated') !== true) {
|
|
go('/');
|
|
}
|
|
|
|
$kirby->session()->remove('kpActivated');
|
|
snippet('header');
|
|
?>
|
|
|
|
<?= $page->text()->kirbytext() ?>
|
|
|
|
<?php snippet('footer') ?>
|