Files
Chevereto/content/pages/default/privacy.php
2024-10-24 14:11:04 +00:00

24 lines
1.0 KiB
PHP

<?php
use function Chevereto\Legacy\G\require_theme_footer;
use function Chevereto\Legacy\G\require_theme_header;
// @phpstan-ignore-next-line
if (! defined('ACCESS') || ! ACCESS) {
exit('This file cannot be directly accessed.');
} ?>
<?php require_theme_header(); ?>
<div class="content-width">
<div class="c24 center-box margin-top-40 margin-bottom-40">
<div class="header default-margin-bottom">
<h1 class="header-title">Example page</h1>
</div>
<div class="text-content">
<p>This is an example page for your Chevereto site.</p>
<h2>Creating and editing pages</h2>
<p>To learn how add or modify a page go to our <a rel="external" href="https://v4-admin.chevereto.com/settings/pages.html" target="_blank">Pages documentation</a>.</p>
<p><a href="https://v4-admin.chevereto.com/settings/pages.html" class="btn btn-small default" target="_blank"><span class="btn-icon fas fa-book"></span> Documentation</a></p>
</div>
</div>
</div>
<?php require_theme_footer(); ?>