This repository has been archived by the owner. It is now read-only.
Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
hale/404.php
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
32 lines (27 sloc)
840 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* The template for displaying 404 pages (Not Found). | |
* | |
* @package WordPress | |
*/ | |
get_header(); ?> | |
<div class="row"> | |
<div class="span12"> | |
<div class="post content clearfix"> | |
<h2 class="page-title">Page Not Found</h2> | |
<div class="entry"> | |
<div class="span-6"> | |
<p>The page you are looking for has either moved or is no longer available.</p> | |
<ul> | |
<li>Click on <a href="<?php echo home_url(); ?>">Home</a> to go to the site homepage</li> | |
<li>Remember to update any saved links</li> | |
</ul> | |
</div> | |
<div class="span6"> | |
<img src="<?php echo get_template_directory_uri();?>/JonathanStill.jpg" alt="photo of puppy"/> | |
</div> | |
</div><!-- .page-content --> | |
</div><!-- .page-wrapper --> | |
</div><!-- #content --> | |
</div><!-- #primary --> | |
<?php get_footer(); ?> |