designtopack/public/site/snippets/generic-template.php

9 lines
166 B
PHP
Raw Normal View History

2024-07-11 12:42:29 +02:00
<?php snippet('header') ?>
2024-09-11 07:32:34 +02:00
<?php
if ($kirby->user()) {
echo '<div id="app"></div>';
} else {
go($site->panel()->url());
}
?>
2024-07-11 12:42:29 +02:00
<?php snippet('footer') ?>