Add email signup pattern.
This commit is contained in:
parent
e1eefc43cd
commit
08ce97749a
3 changed files with 38 additions and 1 deletions
BIN
blank-canvas/assets/pattern-art.jpg
Normal file
BIN
blank-canvas/assets/pattern-art.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 301 KiB |
|
@ -23,7 +23,7 @@ if ( ! function_exists( 'blank_canvas_register_wpcom_block_patterns' ) ) :
|
|||
|
||||
if ( function_exists( 'register_block_pattern' ) ) {
|
||||
|
||||
/* This pattern is WP.com-Only Beacuse it relies on the Layout Grid block. */
|
||||
/* This pattern is WP.com-only because it relies on the Layout Grid block. */
|
||||
register_block_pattern(
|
||||
'blank-canvas/card',
|
||||
array(
|
||||
|
@ -62,6 +62,42 @@ if ( ! function_exists( 'blank_canvas_register_wpcom_block_patterns' ) ) :
|
|||
<!-- /wp:jetpack/layout-grid -->',
|
||||
)
|
||||
);
|
||||
|
||||
/* This pattern is WP.com-only because it relies on the Contact Form block. */
|
||||
register_block_pattern(
|
||||
'blank-canvas/email-signup',
|
||||
array(
|
||||
'title' => __( 'Email Signup', 'blank-canvas' ),
|
||||
'categories' => array( 'blank-canvas' ),
|
||||
'content' => '<!-- wp:cover {"url":"' . get_stylesheet_directory_uri() . '/assets/pattern-art.jpg","id":1934,"dimRatio":60,"overlayColor":"secondary","minHeight":100,"minHeightUnit":"vh","contentPosition":"top left","align":"full"} -->
|
||||
<div class="wp-block-cover alignfull has-background-dim-60 has-secondary-background-color has-background-dim has-custom-content-position is-position-top-left" style="background-image:url(' . get_stylesheet_directory_uri() . '/assets/pattern-art.jpg);min-height:100vh"><div class="wp-block-cover__inner-container"><!-- wp:columns -->
|
||||
<div class="wp-block-columns"><!-- wp:column {"width":"5%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:5%"></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":50} -->
|
||||
<div class="wp-block-column" style="flex-basis:50%"><!-- wp:spacer {"height":10} -->
|
||||
<div style="height:10px" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer -->
|
||||
|
||||
<!-- wp:heading -->
|
||||
<h2><strong>' . __( 'Virtual Art Classes', 'blank-canvas' ) . '</strong></h2>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p>' . __( 'Join instructor Jaime Adams for a series of virtual classes aimed at helping you hone your drawing skills. We will focus on composition, perspective, contour, representing volume, and more!', 'blank-canvas' ) . '</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:jetpack/contact-form -->
|
||||
<!-- wp:jetpack/field-email {"required":true,"options":[]} /-->
|
||||
|
||||
<!-- wp:jetpack/button {"element":"button","text":"' . __( 'Sign Up', 'blank-canvas' ) . '","textColor":"secondary","backgroundColor":"background"} /-->
|
||||
<!-- /wp:jetpack/contact-form --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></div></div>
|
||||
<!-- /wp:cover -->',
|
||||
)
|
||||
);
|
||||
}
|
||||
}
|
||||
endif;
|
||||
|
|
|
@ -37,6 +37,7 @@ License: CC0
|
|||
- Brooke Cagle: https://stocksnap.io/photo/people-woman-MU7G67710S
|
||||
- Daria Shevtsova: https://stocksnap.io/photo/girl-camera-AZED07HITL
|
||||
- Benjamin Voros: https://stocksnap.io/photo/blue-denim-BWPRK5DEF0
|
||||
- Artsy Crafty: https://stocksnap.io/photo/office-supplies-BDVUKQ4BBF
|
||||
Used as block pattern images.
|
||||
|
||||
Image from foodiesfeed.com
|
||||
|
|
Loading…
Reference in a new issue