wordpress_theme_weblog/404.php
mohammadelendil f847592c7b first
2024-08-24 11:31:19 +03:30

22 lines
No EOL
824 B
PHP

<?php get_header(); ?>
<?php get_template_part("inc/page","baner"); ?>
<div class="container">
<div class="row">
<div class="page-content not-found">
<div class="col-md-3"></div>
<div class="col-md-6 text-center">
<span>404</span>
<p>محتوای شما پیدا نشد !</p>
<div class="search_box">
<form action="<?php bloginfo('home');?>" method="get">
<input type="text" name="s" placeholder="متن را وارد کنید ..">
<button type="submit"><i class="fa fa-search"></i></button>
</form>
</div>
</div>
</div>
</div>
</div>
<?php get_footer(); ?>