Files
2024-02-08 12:07:49 -07:00

18 lines
561 B
PHP

<?php include_once 'header.php';?>
<!-- Main content -->
<section class="content">
<div class="error-page">
<h2 class="headline text-yellow"> 404</h2>
<div class="error-content">
<h3><i class="fa fa-warning text-yellow"></i> <?php echo $jkl["404"];?></h3>
<p>
We could not find the page you were looking for.
Meanwhile, you may <a href="<?php echo BASE_URL;?>">return to home</a>.
</p>
</div><!-- /.error-content -->
</div><!-- /.error-page -->
</section><!-- /.content -->
<?php include_once 'footer.php';?>