banner.php
7 months ago
coming-soon-entire-site.php
1 year ago
coming-soon-store-only.php
1 year ago
coming-soon.php
1 year ago
content-right-image-left.php
3 months ago
featured-category-cover-image.php
1 year ago
featured-category-triple.php
1 year ago
footer-large.php
1 year ago
footer-simple-menu.php
2 years ago
footer-with-3-menus.php
3 months ago
four-image-grid-content-left.php
3 months ago
header-centered-pattern.php
1 year ago
header-distraction-free.php
1 year ago
header-essential.php
1 year ago
header-large.php
1 year ago
header-minimal.php
1 year ago
heading-with-three-columns-of-content-with-link.php
3 months ago
hero-product-3-split.php
7 months ago
hero-product-chessboard.php
7 months ago
hero-product-split.php
7 months ago
intro-centered-content-with-image-below.php
3 months ago
just-arrived-full-hero.php
7 months ago
no-products-found-filters.php
1 year ago
no-products-found.php
2 years ago
page-coming-soon-default.php
1 year ago
page-coming-soon-image-gallery.php
1 year ago
page-coming-soon-minimal-left-image.php
1 year ago
page-coming-soon-modern-black.php
1 year ago
page-coming-soon-split-right-image.php
1 year ago
page-coming-soon-with-header-footer.php
3 months ago
product-collection-3-columns.php
11 months ago
product-collection-4-columns.php
11 months ago
product-collection-5-columns.php
11 months ago
product-collection-featured-products-5-columns.php
7 months ago
product-query-product-gallery.php
6 months ago
product-search-form.php
1 year ago
related-products.php
11 months ago
social-follow-us-in-social-media.php
3 months ago
testimonials-3-columns.php
1 year ago
testimonials-single.php
3 months ago
three-columns-with-images-and-content.php
3 months ago
page-coming-soon-with-header-footer.php
57 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Title: Coming Soon with Header and Footer |
| 4 | * Slug: woocommerce/page-coming-soon-with-header-footer |
| 5 | * Categories: WooCommerce |
| 6 | * Template Types: coming-soon |
| 7 | * Inserter: false |
| 8 | */ |
| 9 | |
| 10 | use Automattic\WooCommerce\Blocks\Templates\ComingSoonTemplate; |
| 11 | |
| 12 | $fonts = ComingSoonTemplate::get_font_families(); |
| 13 | $heading_font_family = $fonts['heading']; |
| 14 | $body_font_family = $fonts['body']; |
| 15 | |
| 16 | |
| 17 | ?> |
| 18 | |
| 19 | <!-- wp:woocommerce/coming-soon {"comingSoonPatternId":"page-coming-soon-with-header-footer","className":"woocommerce-coming-soon-store-only"} --> |
| 20 | <div class="wp-block-woocommerce-coming-soon woocommerce-coming-soon-store-only"> |
| 21 | |
| 22 | <?php |
| 23 | if ( wp_is_block_theme() ) { |
| 24 | echo '<!-- wp:template-part {"slug":"header","tagName":"header"} /-->'; |
| 25 | } |
| 26 | ?> |
| 27 | |
| 28 | <!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"center","orientation":"vertical"}} --> |
| 29 | <div class="wp-block-group"><!-- wp:spacer --> |
| 30 | <div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div> |
| 31 | <!-- /wp:spacer --> |
| 32 | |
| 33 | <!-- wp:heading {"textAlign":"center","level":1,"fontFamily":"<?php echo esc_html( $heading_font_family ); ?>"} --> |
| 34 | <h1 class="wp-block-heading has-text-align-center has-<?php echo esc_html( $heading_font_family ); ?>-font-family"><?php echo esc_html__( 'Great things are on the horizon', 'woocommerce' ); ?></h1> |
| 35 | <!-- /wp:heading --> |
| 36 | |
| 37 | <!-- wp:spacer {"height":"10px"} --> |
| 38 | <div style="height:10px" aria-hidden="true" class="wp-block-spacer"></div> |
| 39 | <!-- /wp:spacer --> |
| 40 | |
| 41 | <!-- wp:paragraph {"align":"center","fontFamily":"<?php echo esc_html( $body_font_family ); ?>"} --> |
| 42 | <p class="has-text-align-center has-<?php echo esc_html( $body_font_family ); ?>-font-family"><?php echo esc_html__( 'Something big is brewing! Our store is in the works and will be launching soon!', 'woocommerce' ); ?></p> |
| 43 | <!-- /wp:paragraph --> |
| 44 | |
| 45 | <!-- wp:spacer --> |
| 46 | <div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div> |
| 47 | <!-- /wp:spacer --></div> |
| 48 | <!-- /wp:group --> |
| 49 | |
| 50 | <?php |
| 51 | if ( wp_is_block_theme() ) { |
| 52 | echo '<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->'; |
| 53 | } |
| 54 | ?> |
| 55 | </div> |
| 56 | <!-- /wp:woocommerce/coming-soon --> |
| 57 |