29 lines
577 B
PHP
29 lines
577 B
PHP
<?php
|
|
/**
|
|
* The main template file.
|
|
*
|
|
*/
|
|
|
|
get_header();?>
|
|
|
|
|
|
|
|
<div id="content">
|
|
|
|
<h1 id="title-404">404<br>Страница не найдена</h1>
|
|
|
|
<p><br>Посмотрите другие материалы или воспользуйтесь поиском<br><br></p>
|
|
|
|
<div id="search-form">
|
|
<form action="<?php bloginfo( 'url' ); ?>" method="get">
|
|
<input class="search-text" type="text" name="s" placeholder="<?=$s?>" value=""/>
|
|
<input class="search_submit" type="submit" value="Найти"/>
|
|
</form>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<?php get_footer(); ?>
|