Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub
↵
Jump to
↵
In this user
All GitHub
↵
Jump to
↵
In this repository
All GitHub
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
jjc16105
/
cornerstone
Public
forked from
weblab/cornerstone
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
0
Security
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security
Insights
Files
master
css
img
inc
js
min
sass
.gitignore
403.php
404.php
README.html
README.md
archive.php
comments.php
content-az.php
content-blank.php
content-featured_image.php
content-home.php
content-none.php
content-page.php
content-person.php
content-single.php
content.php
favicon.ico
footer.php
functions.php
header.php
index.php
page-az.php
page-blank.php
page-blog.php
page-home.php
page-pagebuilder-cards.php
page-pagebuilder.php
page-private.php
page-user-profile.php
page.php
screenshot.jpg
search.php
sidebar.php
single-person.php
single.php
style.css
style.scss
user-index-table.php
user-index.php
user-people.php
Breadcrumbs
cornerstone
/
404.php
Blame
Blame
Latest commit
History
History
executable file
·
53 lines (53 loc) · 1.61 KB
Breadcrumbs
cornerstone
/
404.php
Top
File metadata and controls
Code
Blame
executable file
·
53 lines (53 loc) · 1.61 KB
Raw
<?php /** * The template for displaying 404 pages (Not Found). * * @package cornerstone */ get_header(); ?> <div id="error404"> <div class="row"> <div class="col-sm-12"> <div id="primary" class="content-area"> <main id="main" class="site-main" role="main"> <section class="error-404 not-found"> <div class="row"> <div class="col-sm-6"> <header class="page-header"> <h1 class="page-title"><?php _e( 'I\'m Sorry... <br/>That page can’t be found.', 'cs' ); ?></h1> <p class="text-muted">Error 404: Page not found.</p> </header><!-- .page-header --> <div class="page-content"> <p><?php _e( 'It looks like nothing was found at this location. Maybe try one of the links above or a search?', 'cs' ); ?></p> <div class="col-sm-6"> <?php get_search_form(); ?> </div> <div class="col-sm-6"> <ul> <?php if (wp_get_nav_menu_object('404')){ $defaults = array( 'menu' => '404', 'container' => false, 'items_wrap' => '%3$s', 'depth' => 1, 'fallback_cb' => false ); wp_nav_menu( $defaults ); } ?> </ul> </div> </div><!-- .page-content --> </div> <div class="col-sm-6"> <img src="<?php bloginfo('template_directory'); ?>/img/JonathanStill.jpg" alt="Photo of a puppy."/> </div> </div> </section><!-- .error-404 --> </main><!-- #main --> </div><!-- #primary --> </div> </div> </div> <?php get_footer(); ?>
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
You can’t perform that action at this time.