14 lines
478 B
PHP
14 lines
478 B
PHP
<?php get_template_part('templates/page', 'header'); ?>
|
|
|
|
<div class="alert alert-block fade in">
|
|
<a class="close" data-dismiss="alert">×</a>
|
|
<p><?php _e('Sorry, but the page you were trying to view does not exist.', 'roots'); ?></p>
|
|
</div>
|
|
|
|
<p><?php _e('It looks like this was the result of either:', 'roots'); ?></p>
|
|
<ul>
|
|
<li><?php _e('a mistyped address', 'roots'); ?></li>
|
|
<li><?php _e('an out-of-date link', 'roots'); ?></li>
|
|
</ul>
|
|
|
|
<?php get_search_form(); ?>
|