Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
master
Switch branches/tags

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?
Go to file
 
 
Cannot retrieve contributors at this time
<?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(); ?>