blob: f0e3631bbadd5625fa2e67cc7e846d92a09b296f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<?php
printf(
'<div class="container">
<div class="col-lg-8 col-lg-offset-2 text-center">
<div class="logo">
<h1 class="title_404">' . __('OPPS, Error 404 !', 'Lidra') . '</h1>
</div>
<p class="text-muted mensaje-error-404">' . __('The page or content is not available. Please verify that you have typed the correct URL.', 'Lidra') . '</p>
<p class="text-muted">' . __('What if you start searching for it?', 'Lidra') . '</p>');
printf('
<div class="col-lg-6 col-lg-offset-3">
<form action="' . esc_url( home_url( '/' ) ) . '" id="search-form" method="get" role="search">
<div class="input-group">
<input class="form-control" type="text" placeholder="' . esc_attr_x( 'Search …', 'placeholder' ) . '" value="' . get_search_query() . '" name="s" />
<span class="input-group-btn">
<button class="btn btn-primary" type="button" value="'. esc_attr_x( 'Search', 'submit button' ) .'">
<i class="glyphicon glyphicon-search"></i>
</button>
</span>
</div>
</form>
</div>');
printf(
' <div class="col-lg-6 col-lg-offset-3">
<div class="btn-group btn-group-justified">
<a href="'. get_bloginfo('url') .'" class="btn btn-success">' . __('Back to the Home Page', 'Lidra') . ' ยป</a>
</div>
</div>
</div>
</div>');
|