-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy path500.php
26 lines (20 loc) · 789 Bytes
/
500.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
/**
* The template for displaying 404 pages (Not Found).
*
* @package Autonomie
* @since Autonomie 1.0.0
*/
get_header(); ?>
<main id="primary" <?php autonomie_main_class(); ?><?php autonomie_semantics( 'main' ); ?>>
<article id="post-0" class="post error500 internal-server-error">
<header class="entry-header">
<h1 class="entry-title p-name"><?php _e( 'Internal Server Error', 'autonomie' ); ?></h1>
</header>
<div class="entry-content e-content">
<p><?php wp_service_worker_error_message_placeholder(); ?></p>
<p><?php wp_service_worker_error_details_template( '' . esc_html__( 'More Details', 'autonomie' ) . '' ); ?></p>
</div><!-- .entry-content -->
</article><!-- #post-0 -->
</main><!-- #content -->
<?php get_footer(); ?>