initial commit

This commit is contained in:
Jacob Haddon
2020-03-15 10:26:50 -04:00
commit d6a0ff4db1
36 changed files with 3037 additions and 0 deletions

19
404.php Normal file
View File

@ -0,0 +1,19 @@
<?php
/**
* The template for displaying 404 pages (Not Found).
*/
get_header(); ?>
<h1 class="page-title"><?php _e( 'Not Found', 'twentyten' ); ?></h1>
<p><?php _e( 'Apologies, but the page you requested could not be found. Perhaps searching will help.', 'twentyten' ); ?></p>
<?php get_search_form(); ?>
<script type="text/javascript">
// focus on search field after it has loaded
document.getElementById('s') && document.getElementById('s').focus();
</script>
<?php get_footer(); ?>