18 lines
715 B
PHP
18 lines
715 B
PHP
<?php
|
|
/** Not-found template. @package Fragrance_Trade */
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
get_header();
|
|
?>
|
|
<main id="primary" class="site-main container py-5 fragrance-content-area">
|
|
<section class="error-404 not-found text-center py-5">
|
|
<h1 class="display-4"><?php esc_html_e( '页面未找到', 'fragrance-trade' ); ?></h1>
|
|
<p><?php esc_html_e( '页面可能已迁移,请搜索网站或返回首页。', 'fragrance-trade' ); ?></p>
|
|
<div class="mx-auto my-4 fragrance-search-form"><?php get_search_form(); ?></div>
|
|
<a class="btn btn-dark" href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php esc_html_e( '返回首页', 'fragrance-trade' ); ?></a>
|
|
</section>
|
|
</main>
|
|
<?php get_footer(); ?>
|