File: /home/carrerup/.trash/techland/404.php
<?php
/**
* The template for displaying 404 pages (not found)
*
* @link https://codex.wordpress.org/Creating_an_Error_404_Page
*
* @package WordPress
* @subpackage Techland
* @since 1.0.0
*/
get_header();
echo '<div id="nt-404" class="nt-404 error">';
// you can use this action for add any content before container element
do_action( "techland_before_404" );
get_template_part( 'inc/template-parts/404-content' );
// use this action to add any content after 404 page container element
do_action( "techland_after_404" );
echo '</div>';
get_footer();
?>