diff --git a/README.md b/README.md index 03341505..cd425e04 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,6 @@ With its clean, minimal design and powerful feature set, Ash enables agencies to Download the latest stable release: [ash.zip](https://github.com/linchpin/ash/releases/) - ## Requirements - WordPress 6.2+ @@ -18,8 +17,8 @@ Download the latest stable release: [ash.zip](https://github.com/linchpin/ash/re ## Dependencies | Dependency | Version | License | Notes | -|------------|---------|----------------|-----------------------------------------------| -| Frost | 1.0.2 | GPLv2 or later | The base theme Ash was forked from | +| ---------- | ------- | -------------- | --------------------------------------------- | +| Frost | 1.0.3 | GPLv2 or later | The base theme Ash was forked from | | Husky | 7.0.2 | MIT | Used for commit linting for linchpin projects | ## Getting Started diff --git a/functions.php b/functions.php index e08a6910..26376680 100644 --- a/functions.php +++ b/functions.php @@ -15,12 +15,12 @@ define( 'ASH_THEME_VERSION', '1.0.6' ); // Version number is bumped automatically by release please // x-release-please-end -define( 'ASH_THEME_NAME', esc_html__( 'Ash', 'Ash' ) ); -define( 'ASH_THEME_INC', get_stylesheet_directory() . '/includes/' ); -define( 'ASH_THEME_DEBUG', false ); +define('ASH_THEME_NAME', esc_html__('Ash', 'Ash')); +define('ASH_THEME_INC', get_stylesheet_directory() . '/includes/'); +define('ASH_THEME_DEBUG', false); -if ( ! defined( 'SCRIPT_DEBUG' ) ) { - define( 'SCRIPT_DEBUG', true ); // Enable script debug by default. Should be disabled in production. +if (!defined('SCRIPT_DEBUG')) { + define('SCRIPT_DEBUG', true); // Enable script debug by default. Should be disabled in production. } // Define our includes @@ -28,7 +28,7 @@ require_once ASH_THEME_INC . 'navigation.php'; require_once ASH_THEME_INC . 'core.php'; -if ( ! function_exists( 'ash_setup' ) ) { +if (!function_exists('ash_setup')) { /** * Sets up theme defaults and registers support for various WordPress features. @@ -41,9 +41,10 @@ * * @return void */ - function ash_setup() { + function ash_setup() + { // Make theme available for translation. - load_theme_textdomain( 'ash', get_template_directory() . '/languages' ); + load_theme_textdomain('ash', get_template_directory() . '/languages'); // Enqueue editor styles and fonts. add_editor_style( @@ -53,19 +54,20 @@ function ash_setup() { ); // Remove core block patterns. - remove_theme_support( 'core-block-patterns' ); + remove_theme_support('core-block-patterns'); } } -add_action( 'after_setup_theme', 'ash_setup' ); +add_action('after_setup_theme', 'ash_setup'); // Enqueue style sheet. -add_action( 'wp_enqueue_scripts', 'ash_enqueue_style_sheet' ); +add_action('wp_enqueue_scripts', 'ash_enqueue_style_sheet'); -function ash_enqueue_style_sheet() { - wp_enqueue_style( 'ash', get_template_directory_uri() . '/css/ash.css', array(), wp_get_theme()->get( 'Version' ) ); +function ash_enqueue_style_sheet() +{ + wp_enqueue_style('ash', get_template_directory_uri() . '/css/ash.css', array(), wp_get_theme()->get('Version')); } /** @@ -73,90 +75,118 @@ function ash_enqueue_style_sheet() { * * @since 0.9.2 */ -function ash_register_block_styles() { +function ash_register_block_styles() +{ $block_styles = array( 'core/button' => array( - 'fill-base' => __( 'Fill Base', 'ash' ), - 'outline-base' => __( 'Outline Base', 'ash' ), + 'fill-base' => __('Fill Base', 'ash'), + 'outline-base' => __('Outline Base', 'ash'), ), 'core/columns' => array( - 'columns-reverse' => __( 'Reverse', 'ash' ), + 'columns-reverse' => __('Reverse', 'ash'), ), 'core/group' => array( - 'shadow' => __( 'Shadow', 'ash' ), - 'shadow-solid' => __( 'Shadow Solid', 'ash' ), + 'shadow' => __('Shadow', 'ash'), + 'shadow-solid' => __('Solid', 'ash'), ), - 'core/list' => array( - 'no-disc' => __( 'No Disc', 'ash' ), + 'core/image' => array( + 'shadow-light' => __('Shadow', 'ash'), + 'shadow-solid' => __('Solid', 'ash'), + ), + 'core/list' => array( + 'no-disc' => __('No Disc', 'ash'), ), 'core/navigation-link' => array( - 'outline' => __( 'Outline', 'ash' ), + 'outline' => __('Outline', 'ash'), ), 'core/social-links' => array( - 'outline' => __( 'Outline', 'ash' ), + 'outline' => __('Outline', 'ash'), ), ); } // Require Composer autoloader if it exists. -if ( file_exists( __DIR__ . '/vendor/autoload.php' ) ) { +if (file_exists(__DIR__ . '/vendor/autoload.php')) { require_once __DIR__ . '/vendor/autoload.php'; } -add_action( 'init', 'ash_register_block_styles' ); +add_action('init', 'ash_register_block_styles'); /** * Registers block categories, and type. * * @since 0.9.2 */ -function ash_register_block_pattern_categories() { +function ash_register_block_pattern_categories() +{ /* Functionality specific to the Block Pattern Explorer plugin. */ - if ( function_exists( 'register_block_pattern_category_type' ) ) { - register_block_pattern_category_type( 'ash', array( 'label' => __( 'Ash', 'ash' ) ) ); + if (function_exists('register_block_pattern_category_type')) { + register_block_pattern_category_type('ash', array('label' => __('Ash', 'ash'))); } + register_block_pattern_category( + 'page', + array( + 'label' => __('Page', 'frost'), + 'description' => __('Create a full page with multiple patterns that are grouped together.', 'frost'), + ) + ); + register_block_pattern_category( + 'pricing', + array( + 'label' => __('Pricing', 'frost'), + 'description' => __('Compare features for your digital products or service plans.', 'frost'), + ) + ); + $block_pattern_categories = array( 'ash-footer' => array( - 'label' => __( 'Footer', 'ash' ), - 'categoryTypes' => array( 'ash' ), + 'label' => __('Footer', 'ash'), + 'categoryTypes' => array('ash'), ), 'ash-general' => array( - 'label' => __( 'General', 'ash' ), - 'categoryTypes' => array( 'ash' ), + 'label' => __('General', 'ash'), + 'categoryTypes' => array('ash'), ), 'ash-header' => array( - 'label' => __( 'Header', 'ash' ), - 'categoryTypes' => array( 'ash' ), + 'label' => __('Header', 'ash'), + 'categoryTypes' => array('ash'), ), 'ash-page' => array( - 'label' => __( 'Page', 'ash' ), - 'categoryTypes' => array( 'ash' ), + 'label' => __('Page', 'ash'), + 'categoryTypes' => array('ash'), ), 'ash-query' => array( - 'label' => __( 'Query', 'ash' ), - 'categoryTypes' => array( 'ash' ), + 'label' => __('Query', 'ash'), + 'categoryTypes' => array('ash'), ), 'ash-proposals' => array( - 'label' => __( 'Proposals', 'ash' ), - 'categoryTypes' => array( 'ash' ), + 'label' => __('Proposals', 'ash'), + 'categoryTypes' => array('ash'), + ), + 'core/quote' => array( + 'shadow-light' => __('Shadow', 'frost'), + 'shadow-solid' => __('Solid', 'frost'), + ), + 'core/social-links' => array( + 'outline' => __('Outline', 'frost'), ), ); - foreach ( $block_pattern_categories as $name => $properties ) { - register_block_pattern_category( $name, $properties ); + foreach ($block_pattern_categories as $name => $properties) { + register_block_pattern_category($name, $properties); } } -add_action( 'init', 'ash_register_block_pattern_categories', 9 ); +add_action('init', 'ash_register_block_pattern_categories', 9); -if ( ! function_exists( 'wp_body_open' ) ) { - do_action( 'wp_body_open' ); +if (!function_exists('wp_body_open')) { + do_action('wp_body_open'); } // Kick everything off when plugins are loaded. try { Ash\Core\setup(); Ash\Blocks\setup(); -} catch ( Exception $e ) { - wp_die( esc_html( $e->getMessage() ) ); +} catch (Exception $e) { + wp_die(esc_html($e->getMessage())); } diff --git a/patterns/general-author-box-contrast-background.php b/patterns/general-author-box-contrast-background.php new file mode 100644 index 00000000..775c4216 --- /dev/null +++ b/patterns/general-author-box-contrast-background.php @@ -0,0 +1,17 @@ + + + + diff --git a/patterns/general-author-box.php b/patterns/general-author-box.php new file mode 100644 index 00000000..3c2ab11d --- /dev/null +++ b/patterns/general-author-box.php @@ -0,0 +1,17 @@ + + +
+ + + + +
+ diff --git a/patterns/general-boxes-three-contrast-background.php b/patterns/general-boxes-three-contrast-background.php index 5e4b6659..d1d6d616 100644 --- a/patterns/general-boxes-three-contrast-background.php +++ b/patterns/general-boxes-three-contrast-background.php @@ -1,50 +1,59 @@
-
-
-

- - -

- - - -
- - -
-

- - -

- - - -
- - -
-

- - -

- - - -
-
-
- +
+
+

+ + +

+ + +
+ + +
+ +
+ + +
+

+ + +

+ + +
+ + +
+ +
+ + +
+

+ + +

+ + +
+ + +
+ +
+ +
+ + + \ No newline at end of file diff --git a/patterns/general-boxes-three.php b/patterns/general-boxes-three.php index 2dda067e..b6192644 100644 --- a/patterns/general-boxes-three.php +++ b/patterns/general-boxes-three.php @@ -1,50 +1,59 @@
-
-
-

- - -

- - -
-
-
-
- - -
-

- - -

- - -
-
-
-
- - -
-

- - -

- - -
-
-
-
-
-
- +
+
+

+ + +

+ + +
+
+ +
+ +
+ + +
+

+ + +

+ + +
+
+ +
+ +
+ + +
+

+ + +

+ + +
+
+ +
+ +
+ +
+ + + \ No newline at end of file diff --git a/patterns/general-boxes-two-contrast-background.php b/patterns/general-boxes-two-contrast-background.php index 2b3745e2..768185b6 100644 --- a/patterns/general-boxes-two-contrast-background.php +++ b/patterns/general-boxes-two-contrast-background.php @@ -1,37 +1,44 @@
-
-
-

- - -

- - -
-
-
-
- - -
-

- - -

- - -
-
-
-
-
-
- +
+
+

+ + +

+ + +
+
+ +
+ +
+ + +
+

+ + +

+ + +
+
+ +
+ +
+ +
+ + + \ No newline at end of file diff --git a/patterns/general-boxes-two.php b/patterns/general-boxes-two.php index 2d88994b..59fc4bc0 100644 --- a/patterns/general-boxes-two.php +++ b/patterns/general-boxes-two.php @@ -1,37 +1,44 @@
-
-
-

- - -

- - -
-
-
-
- - -
-

- - -

- - -
-
-
-
-
-
- +
+
+

+ + +

+ + +
+
+ +
+ +
+ + +
+

+ + +

+ + +
+
+ +
+ +
+ +
+ + + \ No newline at end of file diff --git a/patterns/general-newsletter-signup-contrast-background.php b/patterns/general-newsletter-signup-contrast-background.php new file mode 100644 index 00000000..1b2acb48 --- /dev/null +++ b/patterns/general-newsletter-signup-contrast-background.php @@ -0,0 +1,18 @@ + + + + diff --git a/patterns/general-newsletter-signup.php b/patterns/general-newsletter-signup.php new file mode 100644 index 00000000..a1818a02 --- /dev/null +++ b/patterns/general-newsletter-signup.php @@ -0,0 +1,18 @@ + + +
+

+ + +

+ + +

+
+ diff --git a/patterns/general-pricing-four-columns-contrast-background.php b/patterns/general-pricing-four-columns-contrast-background.php index 95fcd7a0..68151a70 100644 --- a/patterns/general-pricing-four-columns-contrast-background.php +++ b/patterns/general-pricing-four-columns-contrast-background.php @@ -1,199 +1,218 @@
-
-
-
-

- - -

$95/yr.

-
- - -
-

- - -
- - -

- - -
- - -

- - -
- - -

- - -
- - -

- - -
-
- - -
-
-
-
- - -
-
-

- - -

$195/yr.

-
- - -
-

- - -
- - -

- - -
- - -

- - -
- - -

- - -
- - -

- - -
-
- - -
-
-
-
- - -
-
-

- - -

$495/yr.

-
- - -
-

- - -
- - -

- - -
- - -

- - -
- - -

- - -
- - -

- - -
-
- - -
-
-
-
- - -
-
-

- - -

$995/yr.

-
- - -
-

- - -
- - -

- - -
- - -

- - -
- - -

- - -
- - -

- - -
-
- - -
-
-
-
-
-
- +
+
+
+

+ + +

$95/yr.

+ +
+ + +
+

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ +
+ + +
+
+ +
+ +
+ + +
+
+

+ + +

$195/yr.

+ +
+ + +
+

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ +
+ + +
+
+ +
+ +
+ + +
+
+

+ + +

$495/yr.

+ +
+ + +
+

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ +
+ + +
+
+ +
+ +
+ + +
+
+

+ + +

$995/yr.

+ +
+ + +
+

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ +
+ + +
+
+ +
+ +
+ +
+ + + \ No newline at end of file diff --git a/patterns/general-pricing-four-columns.php b/patterns/general-pricing-four-columns.php index 4639deba..a6c96608 100644 --- a/patterns/general-pricing-four-columns.php +++ b/patterns/general-pricing-four-columns.php @@ -1,199 +1,218 @@
-
-
-
-

- - -

$95/yr.

-
- - -
-

- - -
- - -

- - -
- - -

- - -
- - -

- - -
- - -

- - -
-
- - -
-
-
-
- - -
-
-

- - -

$195/yr.

-
- - -
-

- - -
- - -

- - -
- - -

- - -
- - -

- - -
- - -

- - -
-
- - -
-
-
-
- - -
-
-

- - -

$495/yr.

-
- - -
-

- - -
- - -

- - -
- - -

- - -
- - -

- - -
- - -

- - -
-
- - -
-
-
-
- - -
-
-

- - -

$995/yr.

-
- - -
-

- - -
- - -

- - -
- - -

- - -
- - -

- - -
- - -

- - -
-
- - -
-
-
-
-
-
- +
+
+
+

+ + +

$95/yr.

+ +
+ + +
+

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ +
+ + +
+
+ +
+ +
+ + +
+
+

+ + +

$195/yr.

+ +
+ + +
+

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ +
+ + +
+
+ +
+ +
+ + +
+
+

+ + +

$495/yr.

+ +
+ + +
+

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ +
+ + +
+
+ +
+ +
+ + +
+
+

+ + +

$995/yr.

+ +
+ + +
+

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ +
+ + +
+
+ +
+ +
+ +
+ + + \ No newline at end of file diff --git a/patterns/general-pricing-three-columns-contrast-background.php b/patterns/general-pricing-three-columns-contrast-background.php index c8e9455c..cd4bb0a1 100644 --- a/patterns/general-pricing-three-columns-contrast-background.php +++ b/patterns/general-pricing-three-columns-contrast-background.php @@ -1,152 +1,167 @@
-
-
-
-

- - -

$95/yr.

-
- - -
-

- - -
- - -

- - -
- - -

- - -
- - -

- - -
- - -

- - -
-
- - -
-
-
-
- - -
-
-

- - -

$195/yr.

-
- - -
-

- - -
- - -

- - -
- - -

- - -
- - -

- - -
- - -

- - -
-
- - -
-
-
-
- - -
-
-

- - -

$495/yr.

-
- - -
-

- - -
- - -

- - -
- - -

- - -
- - -

- - -
- - -

- - -
-
- - -
-
-
-
-
-
- +
+
+
+

+ + +

$95/yr.

+ +
+ + +
+

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ +
+ + +
+
+ +
+ +
+ + +
+
+

+ + +

$195/yr.

+ +
+ + +
+

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ +
+ + +
+
+ +
+ +
+ + +
+
+

+ + +

$495/yr.

+ +
+ + +
+

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ +
+ + +
+
+ +
+ +
+ +
+ + + \ No newline at end of file diff --git a/patterns/general-pricing-three-columns.php b/patterns/general-pricing-three-columns.php index 4a95f22a..019805e8 100644 --- a/patterns/general-pricing-three-columns.php +++ b/patterns/general-pricing-three-columns.php @@ -1,152 +1,167 @@
-
-
-
-

- - -

$95/yr.

-
- - -
-

- - -
- - -

- - -
- - -

- - -
- - -

- - -
- - -

- - -
-
- - -
-
-
-
- - -
-
-

- - -

$195/yr.

-
- - -
-

- - -
- - -

- - -
- - -

- - -
- - -

- - -
- - -

- - -
-
- - -
-
-
-
- - -
-
-

- - -

$495/yr.

-
- - -
-

- - -
- - -

- - -
- - -

- - -
- - -

- - -
- - -

- - -
-
- - -
-
-
-
-
-
- +
+
+
+

+ + +

$95/yr.

+ +
+ + +
+

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ +
+ + +
+
+ +
+ +
+ + +
+
+

+ + +

$195/yr.

+ +
+ + +
+

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ +
+ + +
+
+ +
+ +
+ + +
+
+

+ + +

$495/yr.

+ +
+ + +
+

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ +
+ + +
+
+ +
+ +
+ +
+ + + \ No newline at end of file diff --git a/patterns/general-pricing-two-columns-contrast-background.php b/patterns/general-pricing-two-columns-contrast-background.php index fde05457..b33591da 100644 --- a/patterns/general-pricing-two-columns-contrast-background.php +++ b/patterns/general-pricing-two-columns-contrast-background.php @@ -1,105 +1,116 @@
-
-
-
-

- - -

$95/yr.

-
- - -
-

- - -
- - -

- - -
- - -

- - -
- - -

- - -
- - -

- - -
-
- - -
-
-
-
- - -
-
-

- - -

$195/yr.

-
- - -
-

- - -
- - -

- - -
- - -

- - -
- - -

- - -
- - -

- - -
-
- - -
-
-
-
-
-
- +
+
+
+

+ + +

$95/yr.

+ +
+ + +
+

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ +
+ + +
+
+ +
+ +
+ + +
+
+

+ + +

$195/yr.

+ +
+ + +
+

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ +
+ + +
+
+ +
+ +
+ +
+ + + \ No newline at end of file diff --git a/patterns/general-pricing-two-columns.php b/patterns/general-pricing-two-columns.php index c85b9354..9a21d5ff 100644 --- a/patterns/general-pricing-two-columns.php +++ b/patterns/general-pricing-two-columns.php @@ -1,105 +1,116 @@
-
-
-
-

- - -

$95/yr.

-
- - -
-

- - -
- - -

- - -
- - -

- - -
- - -

- - -
- - -

- - -
-
- - -
-
-
-
- - -
-
-

- - -

$195/yr.

-
- - -
-

- - -
- - -

- - -
- - -

- - -
- - -

- - -
- - -

- - -
-
- - -
-
-
-
-
-
- +
+
+
+

+ + +

$95/yr.

+ +
+ + +
+

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ +
+ + +
+
+ +
+ +
+ + +
+
+

+ + +

$195/yr.

+ +
+ + +
+

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ +
+ + +
+
+ +
+ +
+ +
+ + + \ No newline at end of file diff --git a/patterns/general-product-box-contrast-background.php b/patterns/general-product-box-contrast-background.php new file mode 100644 index 00000000..46c96ae6 --- /dev/null +++ b/patterns/general-product-box-contrast-background.php @@ -0,0 +1,29 @@ + + +
+
+
+
Frost Theme Sample Image
+
+ + +
+

+ + +

+ + +
+
+
+
+
+
+ diff --git a/patterns/general-product-box.php b/patterns/general-product-box.php new file mode 100644 index 00000000..5f6d9088 --- /dev/null +++ b/patterns/general-product-box.php @@ -0,0 +1,29 @@ + + +
+
+
+
Sample Image
+
+ + +
+

+ + +

+ + +
+
+
+
+
+
+ diff --git a/patterns/header-notification-bar-contrast-background.php b/patterns/header-notification-bar-contrast-background.php new file mode 100644 index 00000000..28ea930d --- /dev/null +++ b/patterns/header-notification-bar-contrast-background.php @@ -0,0 +1,20 @@ + + + + diff --git a/patterns/header-notification-bar.php b/patterns/header-notification-bar.php new file mode 100644 index 00000000..e56bef51 --- /dev/null +++ b/patterns/header-notification-bar.php @@ -0,0 +1,20 @@ + + +
+
+

+ + +
+
+
+
+
+ diff --git a/patterns/page-about.php b/patterns/page-about.php index 8a63b9c5..e791b5e7 100644 --- a/patterns/page-about.php +++ b/patterns/page-about.php @@ -1,216 +1,248 @@
-
-
-

- - -

- - -
-
- - -
-
-
- - -
-
Sample Image
-
-
-
+
+
+

+ + +

+ + +
+
+ + +
+ +
+ +
+ + +
+
Sample Image
+ +
+ +
+ +
-
-
Sample Logo
- - -
Sample Logo
- - -
Sample Logo
- - -
Sample Logo
- - -
Sample Logo
-
-
+
+
Sample Logo
+ + +
Sample Logo
+ + +
Sample Logo
+ + +
Sample Logo
+ + +
Sample Logo
+ +
+ +
-
-

Build with Ash.

- - -

-
- - -
-
-

01

- - -

- - -

- - -

-
- - -
-

02

- - -

- - -

- - - -
- - -
-

03

- - -

- - -

- - - -
- - -
-

04

- - -

- - -

- - - -
-
-
+
+

Build with Ash.

+ + +

+ +
+ + +
+
+

01

+ + +

+ + +

+ + +

+ +
+ + +
+

02

+ + +

+ + +

+ + + + +
+ + +
+

03

+ + +

+ + +

+ + + + +
+ + +
+

04

+ + +

+ + +

+ + + + +
+ +
+ +
-
-
-

-
- - -
-
-
- - -
-
-
-
-
+
+
+

+ +
+ + +
+
+
+ + +
+ +
+ +
+ +
+ +
-
-

- - -

-
- - -
-
-
-
Sample Image
- - -

- - -

- - -
-
-
-
- - -
-
Sample Image
- - -

- - -

- - -
-
-
-
- - -
-
Sample Image
- - -

- - -

- - -
-
-
-
- - -
-
Sample Image
- - -

- - -

- - -
-
-
-
-
-
-
- +
+

+ + +

+ +
+ + +
+
+
+
Sample Image
+ + +

+ + +

+ + +
+
+ +
+ +
+ + +
+
Sample Image
+ + +

+ + +

+ + +
+
+ +
+ +
+ + +
+
Sample Image
+ + +

+ + +

+ + +
+
+ +
+ +
+ + +
+
Sample Image
+ + +

+ + +

+ + +
+
+ +
+ +
+ +
+ +
+ + + \ No newline at end of file diff --git a/patterns/page-home.php b/patterns/page-home.php index 7dee5bff..b3d0b7d5 100644 --- a/patterns/page-home.php +++ b/patterns/page-home.php @@ -1,118 +1,141 @@
-

+

- - -

- - -
-
- - -
-
-
+ + +

+ + +
+
+ + +
+ +
+ +
-
-
-
-

- - -

- - -
- -
-
-
- - -
-
Sample Image
-
-
-
+
+
+
+

+ + +

+ + +
+ + +
+ +
+ +
+ + +
+
Sample Image
+ +
+ +
+ +
-
-

- - -

-
- - -
-
-
Sample Image
-
- - -
-

- - -

- - -
- -
-
-
- - -
-
-

- - -

- - -
- -
-
- - -
-
Sample Image
-
-
- - -
-
-
Sample Image
-
- - -
-

- - -

- - -
- -
-
-
-
- +
+

+ + +

+ +
+ + +
+
+
Sample Image
+ +
+ + +
+

+ + +

+ + +
+ + +
+ +
+ +
+ + +
+
+

+ + +

+ + +
+ + +
+ +
+ + +
+
Sample Image
+ +
+ +
+ + +
+
+
Sample Image
+ +
+ + +
+

+ + +

+ + +
+ + +
+ +
+ +
+ + + \ No newline at end of file diff --git a/patterns/page-link.php b/patterns/page-link.php index f3958a4a..09994a72 100644 --- a/patterns/page-link.php +++ b/patterns/page-link.php @@ -1,49 +1,53 @@
-
-
Sample Image
- - -

- - -


name@company.com

- - - - - -
- -
- - -
- - -
- - -
- - -
- +
+
Sample Image
+ + +

+ + +


name@company.com

+ + + + + +
+ +
+ + +
+ + +
+ + +
+ + +
+ +
+ + +

+ +
+
- - -

-
-
- + \ No newline at end of file diff --git a/patterns/page-pricing.php b/patterns/page-pricing.php index 6ccff70b..2decde37 100644 --- a/patterns/page-pricing.php +++ b/patterns/page-pricing.php @@ -1,202 +1,224 @@
-
-

- - -

-
- - -
-
-
-
-

- - -

$95/yr.

-
- - -
-

- - -
- - -

- - -
- - -

- - -
- - -

- - -
- - -

- - -
-
- - -
-
-
-
- - -
-
-

- - -

$195/yr.

-
- - -
-

- - -
- - -

- - -
- - -

- - -
- - -

- - -
- - -

- - -
-
- - -
-
-
-
- - -
-
-

- - -

$495/yr.

-
- - -
-

- - -
- - -

- - -
- - -

- - -
- - -

- - -
- - -

- - -
-
- - -
-
-
-
-
-
-
+
+

+ + +

+ +
+ + +
+
+
+
+

+ + +

$95/yr.

+ +
+ + +
+

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ +
+ + +
+
+ +
+ +
+ + +
+
+

+ + +

$195/yr.

+ +
+ + +
+

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ +
+ + +
+
+ +
+ +
+ + +
+
+

+ + +

$495/yr.

+ +
+ + +
+

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ + +

+ + +
+ +
+ + +
+
+ +
+ +
+ +
+ +
+ +
-
-

FAQs

- - -

-
- - -
-

- - -

-
- - -
- - -
-

- - -

-
- - -
- - -
-

- - -

-
-
- +
+

FAQs

+ + +

+ +
+ + +
+

+ + +

+ +
+ + +
+ + +
+

+ + +

+ +
+ + +
+ + +
+

+ + +

+ +
+ + + \ No newline at end of file diff --git a/patterns/query.php b/patterns/query.php index 1c032e66..2e7d8b7a 100644 --- a/patterns/query.php +++ b/patterns/query.php @@ -1,32 +1,33 @@
- - -
- - - - -
- - - - - - - -
- + \ No newline at end of file diff --git a/readme.txt b/readme.txt index 69d674e4..95b9068f 100644 --- a/readme.txt +++ b/readme.txt @@ -9,7 +9,8 @@ License URI: http://www.gnu.org/licenses/gpl-2.0.html == Description == -With its clean, minimal design and powerful feature set, Frost enables agencies to build stylish and sophisticated WordPress websites. Frost is a masterpiece of design and functionality. It features a range of valuable elements, including hero and portfolio sections, prominent call-to-action buttons, and customer testimonials. In addition, Frost utilizes the potential of the editor to create link pages, serve as a powerful tool for building relationships with clients, sharing valuable content, and boosting social media engagement. So whether you’re building a website for your business, personal brand, or creative project, Frost is the perfect solution for anyone looking to launch a website quickly and efficiently. +With its clean, minimal design and powerful feature set, Frost enables agencies to build stylish and sophisticated WordPress websites. Frost is a masterpiece of design and functionality. It features a range of valuable patterns, including hero and portfolio sections, prominent call-to-action buttons, and customer testimonials. Whether you’re building a website for your business, personal brand, or creative project, Frost is perfect for anyone looking to launch quickly and efficiently. + == Changelog == diff --git a/style.css b/style.css index e9b49ab0..05666eb2 100644 --- a/style.css +++ b/style.css @@ -117,6 +117,28 @@ textarea { padding: 5px 8px; } +/* Group +--------------------------------------------- */ + +.wp-block-group.is-style-shadow-light { + box-shadow: var(--wp--preset--shadow--light); +} + +.wp-block-group.is-style-shadow-solid { + box-shadow: var(--wp--preset--shadow--shadow); +} + +/* Image +--------------------------------------------- */ + +.wp-block-image.is-style-shadow-light img { + box-shadow: var(--wp--preset--shadow--light); +} + +.wp-block-image.is-style-shadow-solid img { + box-shadow: var(--wp--preset--shadow--solid); +} + /* List --------------------------------------------- */ @@ -157,3 +179,14 @@ textarea { .wp-block-navigation :where(.wp-block-navigation__submenu-container) a { padding: 2px 10px; } + +/* Quote +--------------------------------------------- */ + +.wp-block-quote.is-style-shadow-light { + box-shadow: var(--wp--preset--shadow--light); +} + +.wp-block-quote.is-style-shadow-solid { + box-shadow: var(--wp--preset--shadow--solid); +} diff --git a/theme.json b/theme.json index cd8661d0..41e69ae9 100644 --- a/theme.json +++ b/theme.json @@ -182,6 +182,21 @@ "contentSize": "640px", "wideSize": "1200px" }, + "shadow": { + "defaultPresets": false, + "presets": [ + { + "name": "Light", + "slug": "light", + "shadow": "0 0 50px rgb(0 0 0 / 10%);" + }, + { + "name": "Solid", + "slug": "solid", + "shadow": "5px 5px currentColor" + } + ] + }, "spacing": { "spacingSizes": [ { @@ -635,6 +650,7 @@ "style": "solid", "width": "1px" }, + "css": "& p {margin: 0;}", "spacing": { "padding": "var(--wp--custom--spacing--gap)" } @@ -685,6 +701,9 @@ "top": "0px !important" } } + }, + "core/term-description": { + "css": "& p {margin: 0;}" } }, "color": {