Skip to content

Commit

Permalink
version 1
Browse files Browse the repository at this point in the history
version 1
  • Loading branch information
Crazytompson committed Dec 13, 2024
0 parents commit 701c6d0
Show file tree
Hide file tree
Showing 459 changed files with 135,184 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# https://github.com/browserslist/browserslist#readme

>= 0.5%
last 2 major versions
not dead
Chrome >= 60
Firefox >= 60
Firefox ESR
iOS >= 12
Safari >= 12
not Explorer <= 11
16 changes: 16 additions & 0 deletions .distignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/.git
/.github
/node_modules
/src/assets
/languages/README.md
.distignore
.gitignore
.editorconfig
README.md
LICENSE
mix-manifest.json
package.json
package-lock.json
composer.json
composer-lock.json

15 changes: 15 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# This file is for unifying the coding style for different editors and IDEs
# editorconfig.org

# WordPress Coding Standards
# https://make.wordpress.org/core/handbook/coding-standards/

root = true

[*]
charset = utf-8
end_of_line = lf
indent_size = 4
indent_style = tab
insert_final_newline = true
trim_trailing_whitespace = true
9 changes: 9 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"extends": [
"plugin:@wordpress/eslint-plugin/recommended"
],
"env": {
"browser": true,
"jquery": true
}
}
Empty file.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/node_modules
/vendor
10 changes: 10 additions & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
// Import the default config file and expose it in the project root.
// Useful for editor integrations.
const defaultConfig = require( '@wordpress/prettier-config' );

module.exports = {
...defaultConfig,
useTabs: true,
tabWidth: 4,
singleQuote: true,
};
3 changes: 3 additions & 0 deletions .stylelintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "@wordpress/stylelint-config"
}
26 changes: 26 additions & 0 deletions 404.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?php
/**
* @package tradeacetheme
*/
get_header(); ?>

<div class="container-wrap">
<div class="row">
<div class="large-12 left columns">
<article id="post-0" class="post error404 not-found text-center">
<header class="entry-header">
<img src="<?php echo apply_filters('tradeace_404_image_src', TRADEACE_THEME_URI.'/assets/images/404.png'); ?>" alt="<?php esc_attr_e('404', 'tradeace-theme');?>" />
<h1 class="entry-title"><?php esc_html_e('Oops! That page can&rsquo;t be found.', 'tradeace-theme'); ?></h1>
</header><!-- .entry-header -->
<div class="entry-content">
<p><?php esc_html_e('Sorry, but the page you are looking for is not found. Please, make sure you have typed the current URL.', 'tradeace-theme'); ?></p>
<?php get_search_form(); ?>
<a class="button medium" href="<?php echo esc_url(home_url('/'));?>"><?php esc_html_e('GO TO HOME','tradeace-theme');?></a>
</div>
</article>
</div>
</div>
</div>

<?php
get_footer();
12 changes: 12 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Trade ACE is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
any later version.

Trade ACE is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with Trade ACE. If not, see https://www.gnu.org/licenses/gpl-3.0.html.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Trade ACE

14 changes: 14 additions & 0 deletions README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
=== Trade ACE ===
Contributors: SHOPEO
Donate link: https://shopeo.cn/
Requires at least: 5.9
Requires PHP: 5.6
Tested up to: 6.1
Stable tag: 0.0.2
License: GPLv3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html

The short description

== Description ==

Loading

0 comments on commit 701c6d0

Please sign in to comment.