Skip to content

Commit

Permalink
Release version 1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
BootWP committed Sep 7, 2023
1 parent 73f51bd commit 804f94c
Show file tree
Hide file tree
Showing 124 changed files with 26,484 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
*.zip
node_modules
package-lock.json
src/js/blocks/
src/jsx
es5.js
30 changes: 30 additions & 0 deletions 404.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?php
/**
* The template for displaying the 404 template.
*/

get_header();
?>

<div class="page-header">
<div class="container">
<div class="text-column">
<h1 class="page-title"><?php esc_html_e( 'Error 404', 'kind' ); ?></h1>
<div class="page-intro"><?php esc_html_e( 'Page not found', 'kind' ); ?></div>
</div>
</div>
</div>

<div class="page-content err404-content">
<div class="container">
<div class="the-content text-column err-404-text">
<p><?php esc_html_e( 'Unfortunately this page has been removed or never exists. Please, use the search field to find the information you need or visit the homepage.', 'kind' ); ?>
</div>
</div>
<div class="widget-full widget_search search-holder">
<?php get_search_form(); ?>
</div>
</div>

<?php
get_footer();
Loading

0 comments on commit 804f94c

Please sign in to comment.