File: /var/www/html/studio/wp-content/themes/kulan/404.php
<?php
/**
* The template for displaying 404 pages (not found)
*
* @link https://codex.wordpress.org/Creating_an_Error_404_Page
*
* @package kulan
*/
get_header();
?>
<div class="error-content">
<img src="<?php echo esc_url( get_template_directory_uri() .'/assets/img/404.png' ); ?>" alt="<?php echo esc_attr_e( '404', 'kulan' ); ?>">
<div class="error-text">
<h3><?php esc_html_e('Page Not Found', 'kulan'); ?></h3>
<p><?php esc_html_e('The page you are looking for might have been removed had its name changed or is temporarily unavailable.', 'kulan'); ?></p>
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" class="common__btn buttons_file"><span><?php esc_html_e('Go to Home', 'kulan'); ?></span><i class="ti-arrow-top-right"></i></a>
</div>
</div>
<?php
get_footer();