-
Notifications
You must be signed in to change notification settings - Fork 360
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2d0f61e
commit b95db2a
Showing
39 changed files
with
2,280 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
<?php | ||
/** | ||
* Bedrock functions and definitions | ||
* | ||
* @link https://developer.wordpress.org/themes/basics/theme-functions/ | ||
* | ||
* @package Bedrock | ||
* @since Bedrock 1.0 | ||
*/ | ||
declare( strict_types = 1 ); | ||
|
||
if ( ! function_exists( 'portia_support' ) ) : | ||
|
||
/** | ||
* Sets up theme defaults and registers support for various WordPress functionalities. | ||
* | ||
* @since Bedrock 1.0 | ||
* | ||
* @return void | ||
*/ | ||
function portia_support() { | ||
|
||
// Enqueue editor styles. | ||
add_editor_style( 'style.css' ); | ||
|
||
// Make theme available for translation. | ||
load_theme_textdomain( 'portia' ); | ||
} | ||
|
||
endif; | ||
|
||
add_action( 'after_setup_theme', 'portia_support' ); | ||
|
||
if ( ! function_exists( 'portia_styles' ) ) : | ||
|
||
/** | ||
* Enqueue styles. | ||
* | ||
* @since Bedrock 1.0 | ||
* | ||
* @return void | ||
*/ | ||
function portia_styles() { | ||
|
||
// Register theme stylesheet. | ||
wp_register_style( | ||
'portia-style', | ||
get_stylesheet_directory_uri() . '/style.css', | ||
array(), | ||
wp_get_theme()->get( 'Version' ) | ||
); | ||
|
||
// Enqueue theme stylesheet. | ||
wp_enqueue_style( 'portia-style' ); | ||
|
||
} | ||
|
||
endif; | ||
|
||
add_action( 'wp_enqueue_scripts', 'portia_styles' ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
<!-- wp:group {"layout":{"type":"default"}} --> | ||
<div class="wp-block-group"> | ||
<!-- wp:comments {"className":"wp-block-comments-query-loop"} --> | ||
<div class="wp-block-comments wp-block-comments-query-loop"> | ||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|80","bottom":"0"}}},"layout":{"type":"default"}} --> | ||
<div class="wp-block-group" style="margin-top:var(--wp--preset--spacing--80);margin-bottom:0"> | ||
<!-- wp:comments-title {"level":3,"fontSize":"large"} /--> | ||
|
||
<!-- wp:group {"layout":{"type":"default"}} --> | ||
<div class="wp-block-group"> | ||
<!-- wp:comment-template {"style":{"spacing":{"padding":{"left":"0px"}}}} --> | ||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"0","bottom":"var:preset|spacing|60"}}}} --> | ||
<div class="wp-block-group" style="margin-top:0;margin-bottom:var(--wp--preset--spacing--60)"> | ||
<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|30"}},"layout":{"type":"flex","flexWrap":"nowrap"}} --> | ||
<div class="wp-block-group"> | ||
<!-- wp:avatar {"size":40} /--> | ||
|
||
<!-- wp:group --> | ||
<div class="wp-block-group"> | ||
<!-- wp:comment-author-name /--> | ||
|
||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"0px","bottom":"0px"},"blockGap":"0.5em"}},"layout":{"type":"flex"}} --> | ||
<div class="wp-block-group" style="margin-top:0px;margin-bottom:0px"> | ||
<!-- wp:comment-date {"format":"F j, Y \\a\\t g:i a"} /--> | ||
|
||
<!-- wp:comment-edit-link /--> | ||
</div> | ||
<!-- /wp:group --> | ||
</div> | ||
<!-- /wp:group --> | ||
</div> | ||
<!-- /wp:group --> | ||
|
||
<!-- wp:comment-content /--> | ||
|
||
<!-- wp:comment-reply-link /--> | ||
</div> | ||
<!-- /wp:group --> | ||
<!-- /wp:comment-template --> | ||
</div> | ||
<!-- /wp:group --> | ||
|
||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|60","bottom":"var:preset|spacing|60"}}},"layout":{"type":"default"}} --> | ||
<div class="wp-block-group" style="margin-top:var(--wp--preset--spacing--60);margin-bottom:var(--wp--preset--spacing--60)"> | ||
<!-- wp:comments-pagination {"paginationArrow":"arrow","layout":{"type":"flex","justifyContent":"space-between"}} --> | ||
<!-- wp:comments-pagination-previous /--> | ||
|
||
<!-- wp:comments-pagination-next /--> | ||
<!-- /wp:comments-pagination --> | ||
</div> | ||
<!-- /wp:group --> | ||
|
||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}},"layout":{"type":"default"}} --> | ||
<div class="wp-block-group" style="margin-top:0px;margin-bottom:0px"> | ||
<!-- wp:post-comments-form {"style":{"spacing":{"margin":{"top":"var:preset|spacing|80"}}}} /--> | ||
</div> | ||
<!-- /wp:group --> | ||
</div> | ||
<!-- /wp:group --> | ||
</div> | ||
<!-- /wp:comments --> | ||
</div> | ||
<!-- /wp:group --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<!-- wp:pattern {"slug":"portia/footer"} /--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<!-- wp:pattern {"slug":"portia/header"} /--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,158 @@ | ||
<?php | ||
/** | ||
* Title: Footer | ||
* Slug: portia/footer | ||
* Categories: footer | ||
* Block Types: core/template-part/footer | ||
* Viewport width: 1824 | ||
*/ | ||
|
||
declare( strict_types = 1 ); | ||
?> | ||
|
||
<!-- wp:group {"style":{"elements":{"link":{"color":{"text":"var:preset|color|theme-2"},":hover":{"color":{"text":"var:preset|color|theme-1"}}}},"spacing":{"padding":{"top":"var:preset|spacing|80","bottom":"var:preset|spacing|80","left":"var:preset|spacing|50","right":"var:preset|spacing|50"}}},"backgroundColor":"theme-5","textColor":"theme-2","layout":{"type":"constrained"}} --> | ||
<div class="wp-block-group has-theme-2-color has-theme-5-background-color has-text-color has-background has-link-color" style="padding-top:var(--wp--preset--spacing--80);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--80);padding-left:var(--wp--preset--spacing--50)"> | ||
<!-- wp:group {"align":"wide","layout":{"type":"default"}} --> | ||
<div class="wp-block-group alignwide"> | ||
<!-- wp:columns --> | ||
<div class="wp-block-columns"> | ||
<!-- wp:column --> | ||
<div class="wp-block-column"> | ||
<!-- wp:group {"style":{"dimensions":{"minHeight":"100%"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch","verticalAlignment":"space-between"}} --> | ||
<div class="wp-block-group" style="min-height:100%"> | ||
<!-- wp:group {"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} --> | ||
<div class="wp-block-group"> | ||
<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|30"}},"layout":{"type":"constrained","contentSize":"840px","justifyContent":"left"}} --> | ||
<div class="wp-block-group"> | ||
<!-- wp:paragraph {"style":{"typography":{"textTransform":"uppercase","letterSpacing":"0.1em","fontStyle":"normal","fontWeight":"600"}},"fontSize":"small"} --> | ||
<p class="has-small-font-size" style="font-style:normal;font-weight:600;letter-spacing:0.1em;text-transform:uppercase"><?php echo esc_html__( 'Contact', 'portia' ); ?></p> | ||
<!-- /wp:paragraph --> | ||
|
||
<!-- wp:site-title {"level":0,"style":{"typography":{"textTransform":"none","fontStyle":"normal","fontWeight":"400","letterSpacing":"0px"}},"fontSize":"x-large"} /--> | ||
</div> | ||
<!-- /wp:group --> | ||
|
||
<!-- wp:group {"layout":{"type":"constrained","justifyContent":"left","contentSize":"396px"}} --> | ||
<div class="wp-block-group"> | ||
<!-- wp:group {"style":{"spacing":{"blockGap":"0"}},"layout":{"type":"flex","orientation":"vertical"}} --> | ||
<div class="wp-block-group"> | ||
<!-- wp:paragraph {"fontSize":"large"} --> | ||
<p class="has-large-font-size"><a href="https://www.google.com/maps/place/Chicago,+IL,+USA/@41.8337329,-87.7319639,11z/data=!3m1!4b1!4m6!3m5!1s0x880e2c3cd0f4cbed:0xafe0a6ad09c0c000!8m2!3d41.8781136!4d-87.6297982!16zL20vMDFfZDQ?entry=ttu" rel="nofollow"><?php echo esc_html__( '742 Evergreen Terrace, Suite 200, Chicago, IL 60642, USA', 'portia' ); ?></a></p> | ||
<!-- /wp:paragraph --> | ||
|
||
<!-- wp:paragraph {"fontSize":"large"} --> | ||
<p class="has-large-font-size"><?php | ||
$tel_link = '<a href="tel:0123456789" rel="nofollow">(012) 345-6789</a>'; | ||
echo sprintf( | ||
esc_html__( 'Direct Line %1$s', 'portia' ), | ||
$tel_link | ||
);?></p><!-- /wp:paragraph --> | ||
|
||
<!-- wp:paragraph {"fontSize":"large"} --> | ||
<p class="has-large-font-size"><?php echo esc_html__( 'Available 24/7', 'portia' ); ?></p> | ||
<!-- /wp:paragraph --> | ||
</div> | ||
<!-- /wp:group --> | ||
|
||
<!-- wp:paragraph --> | ||
<p><?php echo esc_html__( 'For expert legal guidance and strategic solutions tailored to your needs, trust our firm. With a focus on family law, estate planning, property disputes, and litigation, we ensure clarity and confidence at every step. Contact us for a consultation and experience peace of mind with a trusted ally by your side.', 'portia' ); ?></p> | ||
<!-- /wp:paragraph --> | ||
</div> | ||
<!-- /wp:group --> | ||
</div> | ||
<!-- /wp:group --> | ||
|
||
<!-- wp:social-links {"iconColor":"theme-2","iconColorValue":"#F2EADE","openInNewTab":true,"size":"has-small-icon-size","style":{"spacing":{"blockGap":{"top":"var:preset|spacing|30","left":"var:preset|spacing|30"}}},"className":"is-style-logos-only"} --> | ||
<ul class="wp-block-social-links has-small-icon-size has-icon-color is-style-logos-only"> | ||
<!-- wp:social-link {"url":"https://facebook.com/","service":"facebook"} /--> | ||
|
||
<!-- wp:social-link {"url":"https://twitter.com/","service":"x"} /--> | ||
|
||
<!-- wp:social-link {"url":"https://www.linkedin.com/","service":"linkedin"} /--> | ||
|
||
<!-- wp:social-link {"url":"https://yelp.com/","service":"yelp"} /--> | ||
</ul> | ||
<!-- /wp:social-links --> | ||
</div> | ||
<!-- /wp:group --> | ||
</div> | ||
<!-- /wp:column --> | ||
|
||
<!-- wp:column --> | ||
<div class="wp-block-column"> | ||
<!-- wp:jetpack/contact-form --> | ||
<div class="wp-block-jetpack-contact-form"> | ||
<!-- wp:jetpack/field-name {"label":"First Name","required":true,"requiredText":"(required)","width":50,"inputColor":"#0C203B","labelColor":"#F2EADE","fieldBackgroundColor":"#ffffff","borderColor":"#949494"} /--> | ||
|
||
<!-- wp:jetpack/field-name {"label":"Last Name","required":true,"requiredText":"(required)","width":50,"inputColor":"#0C203B","labelColor":"#F2EADE","fieldBackgroundColor":"#ffffff","borderColor":"#949494"} /--> | ||
|
||
<!-- wp:jetpack/field-email {"required":true,"requiredText":"(required)","width":50,"inputColor":"#0C203B","labelColor":"#F2EADE","fieldBackgroundColor":"#ffffff","borderColor":"#949494"} /--> | ||
|
||
<!-- wp:jetpack/field-telephone {"required":true,"requiredText":"(required)","width":50,"inputColor":"#0C203B","labelColor":"#F2EADE","fieldBackgroundColor":"#ffffff","borderColor":"#949494"} /--> | ||
|
||
<!-- wp:jetpack/field-textarea {"label":"Message","requiredText":"(required)","inputColor":"#0C203B","labelColor":"#F2EADE","fieldBackgroundColor":"#ffffff","borderColor":"#949494"} /--> | ||
|
||
<!-- wp:jetpack/button {"element":"button","text":"Contact Us","textColor":"theme-1","backgroundColor":"theme-4","borderRadius":0,"lock":{"remove":true}} /--> | ||
</div> | ||
<!-- /wp:jetpack/contact-form --> | ||
</div> | ||
<!-- /wp:column --> | ||
</div> | ||
<!-- /wp:columns --> | ||
|
||
<!-- wp:group {"align":"wide","style":{"spacing":{"padding":{"top":"var:preset|spacing|50"},"blockGap":"var:preset|spacing|30"}},"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"space-between"}} --> | ||
<div class="wp-block-group alignwide" style="padding-top:var(--wp--preset--spacing--50)"> | ||
<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|30"}},"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"space-between"}} --> | ||
<div class="wp-block-group"> | ||
<!-- wp:paragraph {"fontSize":"small"} --> | ||
<p class="has-small-font-size"><a href="#"><?php echo esc_html__( 'Privacy Policy', 'portia' ); ?></a></p> | ||
<!-- /wp:paragraph --> | ||
|
||
<!-- wp:paragraph {"fontSize":"small"} --> | ||
<p class="has-small-font-size"><a href="#"><?php echo esc_html__( 'Terms & Conditions', 'portia' ); ?></a></p> | ||
<!-- /wp:paragraph --> | ||
</div> | ||
<!-- /wp:group --> | ||
|
||
<!-- wp:paragraph {"align":"right","lock":{"move":false,"remove":false},"className":"has-small-font-size","fontSize":"small"} --> | ||
<p class="has-text-align-right has-small-font-size"><?php | ||
$wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'portia' ) ) . '" rel="nofollow">WordPress</a>'; | ||
echo sprintf( | ||
/* Translators: WordPress link. */ | ||
esc_html__( 'Designed with %1$s', 'portia' ), | ||
$wordpress_link | ||
);?> | ||
</p> | ||
<!-- /wp:paragraph --> | ||
</div> | ||
<!-- /wp:group --> | ||
</div> | ||
<!-- /wp:group --> | ||
</div> | ||
<!-- /wp:group --> | ||
|
||
<!-- wp:cover {"url":"<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/abraham-lincoln.png","hasParallax":true,"dimRatio":0,"minHeight":100,"minHeightUnit":"vh","contentPosition":"center center","style":{"spacing":{"margin":{"top":"0","bottom":"0"},"padding":{"top":"var:preset|spacing|40","bottom":"var:preset|spacing|40","left":"var:preset|spacing|40","right":"var:preset|spacing|40"}},"color":{"duotone":["rgb(136, 99, 67)","rgb(242, 234, 222)"]},"elements":{"link":{"color":{"text":"var:preset|color|theme-5"}}}},"textColor":"theme-5","layout":{"type":"constrained"},"fontSize":"large"} --> | ||
<div class="wp-block-cover has-parallax has-theme-5-color has-text-color has-link-color has-large-font-size" style="margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40);min-height:100vh"><span aria-hidden="true" class="wp-block-cover__background has-background-dim-0 has-background-dim"></span> | ||
<div role="img" class="wp-block-cover__image-background has-parallax" style="background-position:50% 50%;background-image:url(<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/abraham-lincoln.png)"></div><div class="wp-block-cover__inner-container"> | ||
<!-- wp:columns {"align":"wide"} --> | ||
<div class="wp-block-columns alignwide"> | ||
<!-- wp:column --> | ||
<div class="wp-block-column"></div> | ||
<!-- /wp:column --> | ||
|
||
<!-- wp:column {"verticalAlignment":"center","layout":{"type":"constrained"}} --> | ||
<div class="wp-block-column is-vertically-aligned-center"> | ||
<!-- wp:quote {"style":{"elements":{"link":{"color":{"text":"var:preset|color|theme-4"}}}},"textColor":"theme-4","fontSize":"medium"} --> | ||
<blockquote class="wp-block-quote has-theme-4-color has-text-color has-link-color has-medium-font-size"> | ||
<!-- wp:paragraph {"fontSize":"large"} --> | ||
<p class="has-large-font-size"><?php echo esc_html__( 'The people’s will, constitutionally expressed, is the ultimate law for all.', 'portia' ); ?></p> | ||
<!-- /wp:paragraph --><cite>—<?php echo esc_html__( 'Abraham Lincoln', 'portia' ); ?></cite> | ||
</blockquote> | ||
<!-- /wp:quote --> | ||
</div> | ||
<!-- /wp:column --> | ||
</div> | ||
<!-- /wp:columns --> | ||
</div> | ||
</div> | ||
<!-- /wp:cover --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
<?php | ||
/** | ||
* Title: header | ||
* Slug: portia/header | ||
* Categories: header | ||
* Block Types: core/template-part/header | ||
* Viewport width: 1824 | ||
*/ | ||
|
||
declare( strict_types = 1 ); | ||
?> | ||
|
||
<!-- wp:group {"align":"wide","style":{"elements":{"link":{"color":{"text":"var:preset|color|theme-2"},":hover":{"color":{"text":"var:preset|color|theme-1"}}}},"spacing":{"padding":{"top":"var:preset|spacing|30","bottom":"var:preset|spacing|30","left":"var:preset|spacing|50","right":"var:preset|spacing|50"}},"position":{"type":""}},"backgroundColor":"theme-5","textColor":"theme-2","layout":{"type":"constrained"}} --> | ||
<div class="wp-block-group alignwide has-theme-2-color has-theme-5-background-color has-text-color has-background has-link-color" style="padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--50)"> | ||
<!-- wp:group {"align":"wide","style":{"spacing":{"blockGap":"var:preset|spacing|20"}},"layout":{"type":"flex","flexWrap":"wrap","justifyContent":"left"}} --> | ||
<div class="wp-block-group alignwide"> | ||
<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|20"}},"layout":{"type":"flex","flexWrap":"nowrap"}} --> | ||
<div class="wp-block-group"> | ||
<!-- wp:paragraph {"fontSize":"small"} --> | ||
<p class="has-small-font-size">♦</p> | ||
<!-- /wp:paragraph --> | ||
|
||
<!-- wp:paragraph --> | ||
<p><a href="https://www.google.com/maps/place/Chicago,+IL,+USA/@41.8337329,-87.7319639,11z/data=!3m1!4b1!4m6!3m5!1s0x880e2c3cd0f4cbed:0xafe0a6ad09c0c000!8m2!3d41.8781136!4d-87.6297982!16zL20vMDFfZDQ?entry=ttu" data-type="link" data-id="https://www.google.com/maps/place/Chicago,+IL,+USA/@41.8337329,-87.7319639,11z/data=!3m1!4b1!4m6!3m5!1s0x880e2c3cd0f4cbed:0xafe0a6ad09c0c000!8m2!3d41.8781136!4d-87.6297982!16zL20vMDFfZDQ?entry=ttu" rel="nofollow"><?php echo esc_html__( '742 Evergreen Terrace, Suite 200,Chicago, IL 60642, USA', 'portia' ); ?></a></p> | ||
<!-- /wp:paragraph --> | ||
</div> | ||
<!-- /wp:group --> | ||
|
||
<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|20"}},"layout":{"type":"flex","flexWrap":"nowrap"}} --> | ||
<div class="wp-block-group"> | ||
<!-- wp:paragraph {"fontSize":"small"} --> | ||
<p class="has-small-font-size">♦</p> | ||
<!-- /wp:paragraph --> | ||
|
||
<!-- wp:paragraph --> | ||
<p><?php | ||
$tel_link = '<a href="tel:0123456789" rel="nofollow">(012) 345-6789</a>'; | ||
echo sprintf( | ||
esc_html__( 'Direct Line %1$s', 'portia' ), | ||
$tel_link | ||
);?></p> | ||
<!-- /wp:paragraph --> | ||
</div> | ||
<!-- /wp:group --> | ||
|
||
<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|20"}},"layout":{"type":"flex","flexWrap":"nowrap"}} --> | ||
<div class="wp-block-group"> | ||
<!-- wp:paragraph {"fontSize":"small"} --> | ||
<p class="has-small-font-size">♦</p> | ||
<!-- /wp:paragraph --> | ||
|
||
<!-- wp:paragraph --> | ||
<p><?php echo esc_html__( 'Available 24/7', 'portia' ); ?></p> | ||
<!-- /wp:paragraph --> | ||
</div> | ||
<!-- /wp:group --> | ||
</div> | ||
<!-- /wp:group --> | ||
</div> | ||
<!-- /wp:group --> | ||
|
||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|40","bottom":"var:preset|spacing|40","left":"var:preset|spacing|50","right":"var:preset|spacing|50"},"margin":{"top":"0","bottom":"0"}},"elements":{"link":{"color":{"text":"var:preset|color|theme-5"}}},"border":{"bottom":{"color":"var:preset|color|theme-6","width":"1px"},"top":[],"right":[],"left":[]}},"backgroundColor":"theme-2","textColor":"theme-5","layout":{"type":"constrained"}} --> | ||
<div class="wp-block-group has-theme-5-color has-theme-2-background-color has-text-color has-background has-link-color" style="border-bottom-color:var(--wp--preset--color--theme-6);border-bottom-width:1px;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--50)"> | ||
<!-- wp:group {"align":"wide","layout":{"type":"flex","flexWrap":"wrap","justifyContent":"space-between"}} --> | ||
<div class="wp-block-group alignwide"> | ||
<!-- wp:site-title {"level":0,"style":{"layout":{"selfStretch":"fit","flexSize":null}}} /--> | ||
|
||
<!-- wp:navigation {"overlayMenu":"never","layout":{"type":"flex","flexWrap":"wrap"}} /--> | ||
</div> | ||
<!-- /wp:group --> | ||
</div> | ||
<!-- /wp:group --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php | ||
/** | ||
* Title: 404 | ||
* Slug: portia/hidden-404 | ||
* Inserter: no | ||
*/ | ||
|
||
declare( strict_types = 1 ); | ||
?> | ||
|
||
<!-- wp:heading {"level":1,"fontSize":"large"} --> | ||
<h1 class="wp-block-heading has-large-font-size"><?php echo esc_html__( 'Page Not Found', 'portia' ); ?></h1> | ||
<!-- /wp:heading --> | ||
|
||
<!-- wp:paragraph --> | ||
<p><?php echo esc_html__( 'The page you are looking for does not exist, or it has been moved. Please try searching using the form below.', 'portia' ); ?></p> | ||
<!-- /wp:paragraph --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
/** | ||
* Title: No Results Content | ||
* Slug: portia/hidden-no-results-content | ||
* Inserter: no | ||
*/ | ||
|
||
declare( strict_types = 1 ); | ||
?> | ||
|
||
<!-- wp:paragraph --> | ||
<p><?php echo esc_html_x( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'Message explaining that there are no results returned from a search', 'portia' ); ?></p> | ||
<!-- /wp:paragraph --> |
Oops, something went wrong.