-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
evitar tener dos formularios de búsqueda seguidos
- Loading branch information
1 parent
4ff767f
commit db2dfab
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php | ||
|
||
global $ss_framework; | ||
|
||
ss_get_template_part('templates/page', 'header'); | ||
|
||
$alert_message = __( 'Sorry, but the page you were trying to view does not exist.', 'shoestrap' ); | ||
echo $ss_framework->alert( $type = 'warning', $alert_message ); | ||
?> | ||
|
||
<p><?php _e( 'It looks like this was the result of either:', 'shoestrap' ); ?></p> | ||
<ul> | ||
<li><?php _e( 'a mistyped address', 'shoestrap' ); ?></li> | ||
<li><?php _e( 'an out-of-date link', 'shoestrap' ); ?></li> | ||
</ul> | ||
<div class="hidden-sm"><?php get_search_form(); ?></div> |