Skip to content

Commit ac30145

Browse files
committedJul 10, 2015
Fork of DevPress version.
0 parents  commit ac30145

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+22473
-0
lines changed
 

‎.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# OSX
2+
.DS_Store
3+
Icon
4+
5+
# Node.js / Grunt
6+
node_modules
7+
.sass-cache
8+
npm-debug.log

‎404.php

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?php
2+
/**
3+
* The template for displaying 404 pages (Not Found).
4+
*
5+
* @package Gather
6+
*/
7+
8+
get_header(); ?>
9+
10+
<div id="primary" class="content-area">
11+
<main id="main" class="site-main" role="main">
12+
13+
<div id="error-404" class="module">
14+
15+
<header class="entry-header">
16+
<h1 class="entry-title"><?php _e( '404 — Page Not Found', 'gather' ); ?></h1>
17+
</header><!-- .entry-header -->
18+
19+
<div class="entry-content">
20+
<p><?php _e( 'The page you are looking for doesn\'t exist. Try a search?', 'gather' ); ?></p>
21+
22+
<?php get_search_form(); ?>
23+
24+
</div><!-- .entry-content -->
25+
</div>
26+
27+
</main><!-- #main -->
28+
</div><!-- #primary -->
29+
30+
<?php get_footer(); ?>

0 commit comments

Comments
 (0)
Please sign in to comment.