-
Notifications
You must be signed in to change notification settings - Fork 361
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fictionary: Address feedback and cleanup
- Loading branch information
1 parent
934bc71
commit c9babdd
Showing
22 changed files
with
110 additions
and
182 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.
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 |
---|---|---|
@@ -1,15 +1 @@ | ||
<!-- wp:spacer {"height":"var(--wp--preset--spacing--80)"} --> | ||
<div style="height:var(--wp--preset--spacing--80)" aria-hidden="true" class="wp-block-spacer"></div> | ||
<!-- /wp:spacer --> | ||
|
||
<!-- wp:group {"layout":{"type":"constrained"}} --> | ||
<div class="wp-block-group"><!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|60","bottom":"0"},"blockGap":"var:preset|spacing|20"}}} --> | ||
<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--60);padding-bottom:0"><!-- wp:paragraph {"align":"center","style":{"typography":{"fontStyle":"normal","fontWeight":"200","letterSpacing":"0px","textTransform":"uppercase"}},"fontSize":"large","fontFamily":"newsreader"} --> | ||
<p class="has-text-align-center has-newsreader-font-family has-large-font-size" style="font-style:normal;font-weight:200;letter-spacing:0px;text-transform:uppercase">FICTIONARY © All Rights Reserved</p> | ||
<!-- /wp:paragraph --> | ||
|
||
<!-- wp:paragraph {"align":"center","style":{"typography":{"fontSize":"0.8rem"}}} --> | ||
<p class="has-text-align-center" style="font-size:0.8rem">Designed with <a href="https://wordpress.org" rel="nofollow">WordPress</a></p> | ||
<!-- /wp:paragraph --></div> | ||
<!-- /wp:group --></div> | ||
<!-- /wp:group --> | ||
<!-- wp:pattern {"slug":"fictionary/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
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 |
---|---|---|
@@ -1,16 +1,15 @@ | ||
<?php | ||
/** | ||
* Title: A 404 page | ||
* Title: 404 | ||
* Slug: fictionary/404 | ||
* Categories: hidden | ||
* Inserter: no | ||
*/ | ||
|
||
?> | ||
|
||
<!-- wp:heading {"textAlign":"center","level":1,"fontSize":"x-large"} --> | ||
<h1 class="has-text-align-center has-x-large-font-size" id="oops-that-page-can-t-be-found"><?php echo esc_html__( 'Oops! That page can’t be found.', 'fictionary' ); ?></h1> | ||
<!-- wp:heading {"textAlign":"left","level":1,"style":{"typography":{"fontSize":"70px"}}} --> | ||
<h1 class="wp-block-heading has-text-align-left" id="oops-that-page-can-t-be-found" style="font-size:70px"><?php esc_html_e('Oops! That page could not be found.', 'fictionary');?></h1> | ||
<!-- /wp:heading --> | ||
|
||
<!-- wp:paragraph --> | ||
<p><?php echo esc_html__( 'It looks like nothing was found at this location. Maybe try a search?', 'fictionary' ); ?></p> | ||
<p><?php esc_html_e('It looks like nothing was found at this location. Maybe try a search?', 'fictionary');?></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
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 |
---|---|---|
@@ -1,33 +1,19 @@ | ||
<?php | ||
/** | ||
* Title: Default footer | ||
* Title: footer | ||
* Slug: fictionary/footer | ||
* Categories: footer | ||
* Block Types: core/template-part/footer | ||
* Categories: hidden | ||
* Inserter: no | ||
*/ | ||
?> | ||
|
||
<!-- wp:spacer {"height":"var(--wp--preset--spacing--80)"} --> | ||
<!-- wp:spacer {"height":"var:preset|spacing|80"} --> | ||
<div style="height:var(--wp--preset--spacing--80)" aria-hidden="true" class="wp-block-spacer"></div> | ||
<!-- /wp:spacer --> | ||
|
||
<!-- wp:group {"layout":{"type":"constrained"}} --> | ||
<div class="wp-block-group"> | ||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var(--wp--preset--spacing--60)","bottom":"var(--wp--preset--spacing--60)"}}}} --> | ||
<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60)"> | ||
<!-- wp:paragraph {"align":"center"} --> | ||
<p class="has-text-align-center"> | ||
<?php | ||
/* Translators: WordPress link. */ | ||
$wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'fictionary' ) ) . '" rel="nofollow">WordPress</a>'; | ||
echo sprintf( | ||
esc_html__( 'Designed with %1$s', 'fictionary' ), | ||
$wordpress_link | ||
); | ||
?> | ||
</p> | ||
<!-- /wp:paragraph --> | ||
</div> | ||
<!-- /wp:group --> | ||
</div> | ||
<!-- /wp:group --> | ||
<div class="wp-block-group"><!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|60","bottom":"0"},"blockGap":"var:preset|spacing|20"}}} --> | ||
<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--60);padding-bottom:0"><!-- wp:paragraph {"align":"center","style":{"typography":{"fontSize":"0.8rem"}}} --> | ||
<p class="has-text-align-center" style="font-size:0.8rem"><?php echo __('Designed with <a href="https://wordpress.org" rel="nofollow">WordPress</a>', 'fictionary');?></p> | ||
<!-- /wp:paragraph --></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,12 @@ | ||
<?php | ||
/** | ||
* Title: Intro | ||
* Slug: fictionary/intro | ||
* Categories: hidden | ||
* Inserter: no | ||
*/ | ||
?> | ||
|
||
<!-- wp:heading {"textAlign":"center","style":{"typography":{"fontSize":"10rem","fontStyle":"normal","fontWeight":"200","lineHeight":"0.9"},"spacing":{"padding":{"right":"4vw","left":"4vw"}}}} --> | ||
<h2 class="wp-block-heading has-text-align-center" style="padding-right:4vw;padding-left:4vw;font-size:10rem;font-style:normal;font-weight:200;line-height:0.9"><?php echo wp_kses_post( __( 'Hello, my name is Ruth and I write <a href="#">fiction</a>.', 'fictionary' ) );?></h2> | ||
<!-- /wp:heading --> |
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
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
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 |
---|---|---|
@@ -1,15 +1,10 @@ | ||
<!-- wp:template-part {"slug":"header","tagName":"header"} /--> | ||
|
||
<!-- wp:group {"tagName":"main","style":{"spacing":{"blockGap":"var:preset|spacing|50","margin":{"top":"var:preset|spacing|80","bottom":"var:preset|spacing|60"}}},"layout":{"type":"constrained"}} --> | ||
<main class="wp-block-group" style="margin-top:var(--wp--preset--spacing--80);margin-bottom:var(--wp--preset--spacing--60)"><!-- wp:heading {"textAlign":"left","level":1,"style":{"typography":{"fontSize":"70px"}}} --> | ||
<h1 class="wp-block-heading has-text-align-left" id="oops-that-page-can-t-be-found" style="font-size:70px">Oops! That page could not be found.</h1> | ||
<!-- /wp:heading --> | ||
|
||
<!-- wp:paragraph --> | ||
<p>It looks like nothing was found at this location. Maybe try a search?</p> | ||
<!-- /wp:paragraph --> | ||
<main class="wp-block-group" style="margin-top:var(--wp--preset--spacing--80);margin-bottom:var(--wp--preset--spacing--60)"> | ||
<!-- wp:pattern {"slug":"fictionary/404"} /--> | ||
|
||
<!-- wp:search {"label":"","showLabel":false,"buttonText":"","buttonUseIcon":true,"style":{"typography":{"fontSize":"0.9rem"},"border":{"width":"0px","style":"none","radius":"0px"}},"fontFamily":"inter"} /--></main> | ||
<!-- /wp:group --> | ||
|
||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /--> | ||
<!-- wp:template-part {"slug":"footer","tagName":"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
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
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
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 |
---|---|---|
@@ -1,25 +1,21 @@ | ||
<!-- wp:template-part {"slug":"header","tagName":"header"} /--> | ||
|
||
<!-- wp:group {"layout":{"type":"constrained"}} --> | ||
<div class="wp-block-group"> | ||
<!-- wp:post-title /--> | ||
</div> | ||
<div class="wp-block-group"><!-- wp:post-title /--></div> | ||
<!-- /wp:group --> | ||
|
||
<!-- wp:group {"tagName":"main","lock":{"move":false,"remove":true}} --> | ||
<main class="wp-block-group"> | ||
<!-- wp:post-featured-image {"align":"full"} /--> | ||
<!-- wp:post-content {"layout":{"type":"constrained"},"lock":{"move":false,"remove":true}} /--> | ||
</main> | ||
<main class="wp-block-group"><!-- wp:post-featured-image {"align":"full"} /--> | ||
|
||
<!-- wp:post-content {"lock":{"move":false,"remove":true},"layout":{"type":"constrained"}} /--></main> | ||
<!-- /wp:group --> | ||
|
||
<!-- wp:group {"layout":{"type":"constrained"}} --> | ||
<div class="wp-block-group"> | ||
<!-- wp:spacer {"height":60} --> | ||
<div style="height:60px" aria-hidden="true" class="wp-block-spacer"></div> | ||
<!-- /wp:spacer --> | ||
<!-- wp:pattern {"slug":"fictionary/comments"} /--> | ||
</div> | ||
<div class="wp-block-group"><!-- wp:separator --> | ||
<hr class="wp-block-separator has-alpha-channel-opacity"/> | ||
<!-- /wp:separator --> | ||
|
||
<!-- wp:pattern {"slug":"fictionary/comments"} /--></div> | ||
<!-- /wp:group --> | ||
|
||
<!-- wp:template-part {"slug":"footer","tagName":"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
Oops, something went wrong.