-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
35 lines (30 loc) · 959 Bytes
/
Copy path404.php
File metadata and controls
35 lines (30 loc) · 959 Bytes
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
31
32
33
34
35
<?php get_header() ?>
<?php get_template_part("include/page","banner"); ?>
<div class="page-baner">
<div class="container">
<div class="row">
<div class="col-md-12">
<span>عنوان صفحه</span>
</div>
</div>
</div>
</div>
<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>
</div>
<?php get_footer(); ?>