Files
agroexpert/404.php
2024-03-12 09:16:19 +03:00

16 lines
553 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php get_header(); ?>
<div class="error-page">
<div class="container">
<div class="error-page__inner">
<p class="error-page__title">Страница 404</p>
<p class="error-page__subtitle">
Данной страницы не существует, перейдите на главную страницу
сайта
</p>
<a href="<?= home_url(); ?>" class="button error-page__btn">На главную</a>
</div>
</div>
</div>
<?php get_footer(); ?>