| Server IP : 209.16.87.222 / Your IP : 216.73.217.138 Web Server : Apache/2.4.68 (Debian) System : Linux 797b534c095b 6.18.38-Unraid #1 SMP PREEMPT_DYNAMIC Mon Jul 6 15:22:03 PDT 2026 x86_64 User : ( 1000) PHP Version : 8.3.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/html/wp-content/themes/signify/ |
Upload File : |
<?php /** * The template for displaying 404 pages (not found) * * @link https://codex.wordpress.org/Creating_an_Error_404_Page * * @package Signify */ get_header(); ?> <div id="primary" class="content-area"> <main id="main" class="site-main"> <?php if ( is_active_sidebar( 'sidebar-notfound' ) ) : dynamic_sidebar( 'sidebar-notfound' ); else : ?> <section class="error-404 not-found"> <div class="singular-content-wrap"> <?php $header_image = signify_featured_overall_image(); if ( 'disable' === $header_image ) : ?> <header class="page-header"> <h2 class="page-title section-title"><?php esc_html_e( 'Nothing Found', 'signify' ); ?></h2> <div class="section-description-wrapper"> <p><?php esc_html_e( 'Oops! That page can’t be found.', 'signify' ); ?></p> </div> </header><!-- .entry-header --> <?php endif; ?> <div class="page-content"> <p><?php esc_html_e( 'It looks like nothing was found at this location. Maybe try one of the links below or a search?', 'signify' ); ?></p> <?php get_search_form(); ?> </div><!-- .page-content --> </div> <!-- .singular-content-wrap --> </section><!-- .error-404 --> <?php endif; ?> </main><!-- #main --> </div><!-- #primary --> <?php get_footer();