-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
executable file
·37 lines (24 loc) · 869 Bytes
/
404.php
File metadata and controls
executable file
·37 lines (24 loc) · 869 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
36
37
<?php
/**
* Error Template
*/
get_header(); ?>
<div id="content" class="site-content">
<div class="ccl-l-container">
<header class="ccl-u-mb-3">
<h1><?php _e( 'Oops, nothing was found.', 'ccl' ) ; ?></h1>
</header>
<div class="ccl-l-row">
<div class="ccl-c-entry-content ccl-l-column ccl-l-span-9-md ccl-u-my-2">
<form class="ccl-c-search-form" role="search" method="get" action="<?php echo site_url(); ?>" style="border:1px solid">
<input type="text" class="ccl-c-search-form-item ccl-b-input" name="s" placeholder="Maybe try a search?"/>
<button type="submit" class="ccl-c-search-form__submit">
<span class="ccl-b-icon search" aria-hidden="true"></span>
<span class="ccl-u-display-none">Search</span>
</button>
</form>
</div>
</div>
</div>
</div>
<?php get_footer();