Files
2026-06-22 00:43:05 +08:00

25 lines
633 B
PHP

<?php
/**
* The template for displaying 404 pages
*
* @package SewJoy_Theme
*/
get_header();
?>
<main id="main" class="site-main">
<section class="error-404 not-found">
<header class="page-header">
<h1 class="page-title">404 - 页面未找到</h1>
</header>
<div class="page-content">
<p>抱歉,您访问的页面不存在。可能是链接已失效或地址输入错误。</p>
<p>请检查网址是否正确,或返回<a href="<?php echo esc_url( home_url( '/' ) ); ?>">首页</a>继续浏览。</p>
</div>
</section>
</main>
<?php
get_footer();