mirror of
https://github.com/kennethreitz-archive/wp-krtheme.git
synced 2026-06-05 23:40:16 +00:00
20 lines
398 B
PHP
20 lines
398 B
PHP
<?php
|
|
add_action('wp_head', 'page_head');
|
|
get_header();
|
|
|
|
function page_head() {
|
|
|
|
}
|
|
?>
|
|
|
|
<div class="contentBody">
|
|
<article>
|
|
<h1 class="contentTitle">404— File Not Found</h1>
|
|
<div class="content">
|
|
<h2>Oops, Not Found!</h2>
|
|
<p>Sorry, we were unable to find the page you were looking for. </p>
|
|
<!-- /.content --></div>
|
|
</article>
|
|
<!-- /.contentBody --></div>
|
|
<?php get_footer(); ?>
|