Skip to content

Commit 6b4e4d6

Browse files
committed
Reuploaded Repository
0 parents  commit 6b4e4d6

596 files changed

Lines changed: 151411 additions & 0 deletions

File tree

Some content is hidden

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

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

.gitignore

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Ignore everything:
2+
3+
.DS_Store
4+
*.DS_Store
5+
**/.DS_Store
6+
Thumbs.db
7+
**/Thumbs.db
8+
node_modules/
9+
vendor/
10+
package-lock.json
11+
composer.lock
12+
.vscode/
13+
~/
14+
.idea/
15+
*.sublime-project
16+
*.sublime-workspace
17+
*.map
18+
*.log
19+

404.php

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?php
2+
/**
3+
* The template for displaying 404 pages (not found)
4+
*
5+
* @link https://codex.wordpress.org/Creating_an_Error_404_Page
6+
*
7+
* @package Base
8+
*/
9+
10+
namespace Base;
11+
12+
get_header();
13+
14+
if ( ! defined( 'ABSPATH' ) ) {
15+
exit;
16+
}
17+
18+
webapp()->print_styles( 'base-content' );
19+
/**
20+
* Hook for everything, makes for better elementor theming support.
21+
*/
22+
do_action( 'base_single' );
23+
24+
get_footer();

500.php

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
<?php
2+
/**
3+
* The template for displaying 500 pages (internal server errors)
4+
*
5+
* @link https://github.com/xwp/pwa-wp#offline--500-error-handling
6+
*
7+
* @package Base
8+
*/
9+
10+
namespace Base;
11+
12+
get_header();
13+
14+
if ( ! defined( 'ABSPATH' ) ) {
15+
exit;
16+
}
17+
18+
webapp()->print_styles( 'base-content' );
19+
/**
20+
* Hook for Hero Section
21+
*/
22+
do_action( 'base_hero_header' );
23+
24+
?>
25+
<div id="primary" class="content-area">
26+
<div class="content-container site-container">
27+
<main id="main" class="site-main" role="main">
28+
<?php
29+
/**
30+
* Hook for anything before main content
31+
*/
32+
do_action( 'base_before_main_content' );
33+
34+
get_template_part( 'template-parts/content/error', '500' );
35+
/**
36+
* Hook for anything after main content.
37+
*/
38+
do_action( 'base_after_main_content' );
39+
?>
40+
</main><!-- #main -->
41+
<?php
42+
get_sidebar();
43+
?>
44+
</div>
45+
</div><!-- #primary -->
46+
<?php
47+
get_footer();

0 commit comments

Comments
 (0)