Eventual: Add theme (#7308)

* Initial commit

* Tidy up readme, style.css and theme.json

* Add font credits

* Add image credits

* Remove gif

* Remove ids and refs

* Fix copyright info

* Compress images

* Patternise footers

* Translate Designed with WordPress strings

* Remove sample page template

* Remove unused colours
This commit is contained in:
Sarah Norris 2023-11-07 16:14:11 +00:00 committed by GitHub
parent 069116a025
commit bbe3a57746
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
31 changed files with 1302 additions and 0 deletions

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.

After

Width:  |  Height:  |  Size: 476 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 886 KiB

60
eventual/functions.php Normal file
View file

@ -0,0 +1,60 @@
<?php
/**
* Eventual functions and definitions
*
* @link https://developer.wordpress.org/themes/basics/theme-functions/
*
* @package Eventual
* @since Eventual 1.0
*/
if ( ! function_exists( 'eventual_support' ) ) :
/**
* Sets up theme defaults and registers support for various WordPress features.
*
* @since Eventual 1.0
*
* @return void
*/
function eventual_support() {
// Enqueue editor styles.
add_editor_style( 'style.css' );
// Make theme available for translation.
load_theme_textdomain( 'eventual' );
}
endif;
add_action( 'after_setup_theme', 'eventual_support' );
if ( ! function_exists( 'eventual_styles' ) ) :
/**
* Enqueue styles.
*
* @since Eventual 1.0
*
* @return void
*/
function eventual_styles() {
// Register theme stylesheet.
wp_register_style(
'eventual-style',
get_stylesheet_directory_uri() . '/style.css',
array(),
wp_get_theme()->get( 'Version' )
);
// Enqueue theme stylesheet.
wp_enqueue_style( 'eventual-style' );
}
endif;
add_action( 'wp_enqueue_scripts', 'eventual_styles' );

View file

@ -0,0 +1 @@
<!-- wp:pattern {"slug":"eventual/footer-light"} /-->

View file

@ -0,0 +1 @@
<!-- wp:pattern {"slug":"eventual/footer"} /-->

View file

@ -0,0 +1,17 @@
<!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0px","margin":{"top":"0px","bottom":"0px"},"padding":{"top":"4rem","right":"10%","bottom":"2rem","left":"10%"}}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch","flexWrap":"wrap"}} -->
<div class="wp-block-group alignfull" style="margin-top:0px;margin-bottom:0px;padding-top:4rem;padding-right:10%;padding-bottom:2rem;padding-left:10%"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"bottom":"0.3rem","top":"0.3rem"},"margin":{"top":"0rem","bottom":"0rem"},"blockGap":"0px"},"border":{"top":{"width":"0.2rem"}}},"layout":{"type":"flex","justifyContent":"space-between","flexWrap":"wrap"}} -->
<div class="wp-block-group alignfull" style="border-top-width:0.2rem;margin-top:0rem;margin-bottom:0rem;padding-top:0.3rem;padding-bottom:0.3rem"><!-- wp:site-title {"style":{"typography":{"fontSize":"2rem","lineHeight":"1","letterSpacing":"0rem"}}} /-->
<!-- wp:navigation {"overlayMenu":"never","layout":{"type":"flex","setCascadingProperties":true,"justifyContent":"right","orientation":"horizontal"},"style":{"spacing":{"margin":{"top":"0"},"blockGap":"1.5rem"},"typography":{"fontSize":"2rem","lineHeight":"1","letterSpacing":"0rem"},"layout":{"selfStretch":"fit","flexSize":null}}} /--></div>
<!-- /wp:group -->
<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"bottom":"0.3rem","top":"0.6rem"},"blockGap":"0px"},"border":{"top":{"width":"0.2rem"},"right":[],"bottom":[],"left":[]}},"layout":{"type":"flex","orientation":"vertical"}} -->
<div class="wp-block-group alignfull" style="border-top-width:0.2rem;padding-top:0.6rem;padding-bottom:0.3rem"><!-- wp:heading {"level":1,"style":{"spacing":{"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}},"typography":{"fontSize":"2rem","fontStyle":"normal","fontWeight":"700","letterSpacing":"0rem"},"elements":{"link":{"color":{"text":"var:preset|color|contrast"}}}},"textColor":"contrast","fontFamily":"figtree"} -->
<h1 class="wp-block-heading has-contrast-color has-text-color has-link-color has-figtree-font-family" style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;font-size:2rem;font-style:normal;font-weight:700;letter-spacing:0rem">The Sun Never sets on A8C</h1>
<!-- /wp:heading -->
<!-- wp:heading {"level":1,"style":{"spacing":{"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}},"typography":{"fontSize":"2rem","fontStyle":"normal","fontWeight":"700","letterSpacing":"0rem"},"elements":{"link":{"color":{"text":"var:preset|color|contrast"}}}},"textColor":"contrast","fontFamily":"figtree"} -->
<h1 class="wp-block-heading has-contrast-color has-text-color has-link-color has-figtree-font-family" style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;font-size:2rem;font-style:normal;font-weight:700;letter-spacing:0rem">5K Global Run</h1>
<!-- /wp:heading --></div>
<!-- /wp:group --></div>
<!-- /wp:group -->

View file

@ -0,0 +1,12 @@
<!-- wp:group {"layout":{"type":"constrained"}} -->
<div class="wp-block-group">
<!-- wp:group {"layout":{"type":"flex"}} -->
<div class="wp-block-group">
<!-- wp:post-author {"showAvatar":false,"fontSize":"small"} /-->
<!-- wp:post-date {"isLink":true,"fontSize":"small"} /-->
<!-- wp:post-terms {"term":"category","fontSize":"small"} /-->
<!-- wp:post-terms {"term":"post_tag","fontSize":"small"} /-->
</div>
<!-- /wp:group -->
</div>
<!-- /wp:group -->

50
eventual/patterns/404.php Normal file
View file

@ -0,0 +1,50 @@
<?php
/**
* Title: 404
* Slug: eventual/404
* Categories: hidden
* Inserter: no
*/
?>
<!-- wp:cover {"url":"<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/image-from-rawpixel-id-3306149_distorted.jpg","dimRatio":0,"overlayColor":"contrast","minHeight":100,"minHeightUnit":"vh","contentPosition":"center center","align":"full","style":{"spacing":{"padding":{"top":"3rem","right":"10%","bottom":"3rem","left":"10%"},"margin":{"top":"0px","bottom":"0px"}}},"textColor":"base","layout":{"type":"default"}} -->
<div class="wp-block-cover alignfull has-base-color has-text-color" style="margin-top:0px;margin-bottom:0px;padding-top:3rem;padding-right:10%;padding-bottom:3rem;padding-left:10%;min-height:100vh"><span aria-hidden="true" class="wp-block-cover__background has-contrast-background-color has-background-dim-0 has-background-dim"></span><img class="wp-block-cover__image-background" alt="" src="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/image-from-rawpixel-id-3306149_distorted.jpg" data-object-fit="cover"/><div class="wp-block-cover__inner-container"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"bottom":"0.3rem","top":"0rem","right":"0rem","left":"0rem"},"margin":{"top":"0rem","bottom":"0rem"}},"border":{"bottom":{"width":"0.2rem"},"top":[],"right":[],"left":[]}},"layout":{"type":"flex","justifyContent":"space-between","flexWrap":"wrap"}} -->
<div class="wp-block-group alignfull" style="border-bottom-width:0.2rem;margin-top:0rem;margin-bottom:0rem;padding-top:0rem;padding-right:0rem;padding-bottom:0.3rem;padding-left:0rem"><!-- wp:site-title {"style":{"elements":{"link":{"color":{"text":"var:preset|color|base"}}}},"textColor":"base"} /-->
<!-- wp:navigation {"overlayMenu":"never","layout":{"type":"flex","setCascadingProperties":true,"justifyContent":"right","orientation":"horizontal"},"style":{"spacing":{"margin":{"top":"0"},"blockGap":""}}} /--></div>
<!-- /wp:group -->
<!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0rem","margin":{"top":"4rem","bottom":"8rem"}}},"layout":{"type":"flex","orientation":"vertical","flexWrap":"nowrap","justifyContent":"stretch"}} -->
<div class="wp-block-group alignfull" style="margin-top:4rem;margin-bottom:8rem"><!-- wp:heading {"level":1,"style":{"spacing":{"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}},"typography":{"lineHeight":"0.9"}}} -->
<h1 class="wp-block-heading" style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;line-height:0.9">Nothing was found</h1>
<!-- /wp:heading -->
<!-- wp:heading {"level":1,"style":{"spacing":{"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}},"typography":{"lineHeight":"0.9"}}} -->
<h1 class="wp-block-heading" style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;line-height:0.9">at this location.</h1>
<!-- /wp:heading --></div>
<!-- /wp:group -->
<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"0.3rem","right":"0rem","bottom":"0.5rem","left":"0rem"},"blockGap":"0px","margin":{"top":"0px","bottom":"0px"}},"border":{"top":{"width":"0.2rem"},"right":[],"bottom":[],"left":[]}},"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"space-between"}} -->
<div class="wp-block-group alignfull" style="border-top-width:0.2rem;margin-top:0px;margin-bottom:0px;padding-top:0.3rem;padding-right:0rem;padding-bottom:0.5rem;padding-left:0rem"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"bottom":"0rem","top":"0rem","right":"0rem","left":"0rem"},"margin":{"top":"0rem","bottom":"0rem"}},"layout":{"selfStretch":"fill","flexSize":null}},"layout":{"type":"flex","justifyContent":"space-between"}} -->
<div class="wp-block-group alignfull" style="margin-top:0rem;margin-bottom:0rem;padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem"><!-- wp:paragraph {"align":"right","style":{"typography":{"fontSize":"3rem","lineHeight":"1","textTransform":"uppercase","fontStyle":"normal","fontWeight":"700","letterSpacing":"-0.1rem"},"elements":{"link":{"color":{"text":"var:preset|color|base"}}}},"textColor":"base"} -->
<p class="has-text-align-right has-base-color has-text-color has-link-color" style="font-size:3rem;font-style:normal;font-weight:700;letter-spacing:-0.1rem;line-height:1;text-transform:uppercase">Maybe try a new search?</p>
<!-- /wp:paragraph -->
<!-- wp:search {"label":"","showLabel":false,"width":100,"widthUnit":"%","buttonPosition":"button-inside","buttonUseIcon":true,"style":{"border":{"width":"0px","style":"none","radius":"4px"}}} /--></div>
<!-- /wp:group --></div>
<!-- /wp:group -->
<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"bottom":"0rem","top":"0.3rem"},"margin":{"top":"0rem","bottom":"0rem"}},"border":{"top":{"width":"0.2rem"},"right":[],"bottom":[],"left":[]}},"layout":{"type":"flex","justifyContent":"left"}} -->
<div class="wp-block-group alignfull" style="border-top-width:0.2rem;margin-top:0rem;margin-bottom:0rem;padding-top:0.3rem;padding-bottom:0rem"><!-- wp:paragraph {"align":"left","style":{"typography":{"fontSize":"3rem","lineHeight":"1","textTransform":"uppercase","fontStyle":"normal","fontWeight":"700","letterSpacing":"-0.1rem"},"elements":{"link":{"color":{"text":"var:preset|color|base"}}}},"textColor":"base"} -->
<p class="has-text-align-left has-base-color has-text-color has-link-color" style="font-size:3rem;font-style:normal;font-weight:700;letter-spacing:-0.1rem;line-height:1;text-transform:uppercase">
<?php
/* Translators: WordPress link. */
$wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'eventual' ) ) . '" rel="nofollow">WordPress</a>';
echo sprintf(
esc_html__( 'Designed with %1$s', 'eventual' ),
$wordpress_link
);
?>
</p>
<!-- /wp:paragraph --></div>
<!-- /wp:group --></div></div>
<!-- /wp:cover -->

View file

@ -0,0 +1,52 @@
<?php
/**
* Title: Comments
* slug: eventual/comments
* inserter: no
*/
?>
<!-- wp:comments {"className":"wp-block-comments-query-loop"} -->
<div class="wp-block-comments wp-block-comments-query-loop">
<!-- wp:comments-title {"level":3} /-->
<!-- wp:comment-template -->
<!-- wp:group {"style":{"spacing":{"margin":{"top":"0","bottom":"var:preset|spacing|50"}}}} -->
<div class="wp-block-group" style="margin-top:0;margin-bottom:var(--wp--preset--spacing--50)">
<!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap"},"style":{"spacing":{"blockGap":"0.5em"}}} -->
<div class="wp-block-group">
<!-- wp:avatar {"size":40,"style":{"spacing":{"margin":{"top":"0.5em"}}}} /-->
<!-- wp:group -->
<div class="wp-block-group">
<!-- wp:comment-author-name /-->
<!-- wp:group {"layout":{"type":"flex"},"style":{"spacing":{"margin":{"top":"0px","bottom":"0px"},"blockGap":"0.5em"}}} -->
<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 -->
<!-- wp:comments-pagination -->
<!-- wp:comments-pagination-previous /-->
<!-- wp:comments-pagination-numbers /-->
<!-- wp:comments-pagination-next /-->
<!-- /wp:comments-pagination -->
<!-- wp:post-comments-form /-->
</div>
<!-- /wp:comments -->

View file

@ -0,0 +1,29 @@
<?php
/**
* Title: Footer Light
* Slug: eventual/footer-light
* Categories: footer
* Block Types: core/template-part/footer
*/
?>
<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"0rem","right":"0rem","bottom":"0rem","left":"0rem"},"margin":{"top":"8rem","bottom":"0px"},"blockGap":"4rem"}},"layout":{"type":"flex","orientation":"vertical"}} -->
<div class="wp-block-group alignfull" style="margin-top:8rem;margin-bottom:0px;padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem"><!-- wp:paragraph {"style":{"typography":{"fontSize":"2rem"}}} -->
<p style="font-size:2rem">This is a sample site created based on <a rel="noreferrer noopener" href="#" target="_blank">a post from Andrew Lind</a> stating that 'For a 24-hour period around March 28th, there will be at least 1 Automattician somewhere around the world running in a virtual relay.' This run's Previous editions were also registered in <a rel="noreferrer noopener" href="#" target="_blank">2022 (I)</a>, <a rel="noreferrer noopener" href="#" target="_blank">2022 (II)</a>, and <a rel="noreferrer noopener" href="#" target="_blank">2021</a>.</p>
<!-- /wp:paragraph -->
<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"bottom":"0rem","top":"0.3rem"},"margin":{"top":"2rem","bottom":"0rem"}},"border":{"top":{"width":"0.3rem"}},"elements":{"link":{"color":{"text":"var:preset|color|contrast"}}}},"textColor":"contrast","layout":{"type":"flex","justifyContent":"left"}} -->
<div class="wp-block-group alignfull has-contrast-color has-text-color has-link-color" style="border-top-width:0.3rem;margin-top:2rem;margin-bottom:0rem;padding-top:0.3rem;padding-bottom:0rem"><!-- wp:paragraph {"align":"left","style":{"typography":{"fontSize":"3rem","lineHeight":"1","textTransform":"uppercase","fontStyle":"normal","fontWeight":"600","letterSpacing":"-0.1rem"}}} -->
<p class="has-text-align-left" style="font-size:3rem;font-style:normal;font-weight:600;letter-spacing:-0.1rem;line-height:1;text-transform:uppercase">
<?php
/* Translators: WordPress link. */
$wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'eventual' ) ) . '" rel="nofollow">WordPress</a>';
echo sprintf(
esc_html__( 'Designed with %1$s', 'eventual' ),
$wordpress_link
);
?>
</p>
<!-- /wp:paragraph --></div>
<!-- /wp:group --></div>
<!-- /wp:group -->

View file

@ -0,0 +1,24 @@
<?php
/**
* Title: Default footer
* Slug: eventual/footer
* Categories: footer
* Block Types: core/template-part/footer
*/
?>
<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"bottom":"2rem","top":"2rem"},"margin":{"top":"0rem","bottom":"0rem"}},"border":{"top":{"width":"0.5rem"},"bottom":{"width":"0.5rem"}}},"layout":{"type":"flex","justifyContent":"right"}} -->
<div class="wp-block-group alignfull" style="border-top-width:0.5rem;border-bottom-width:0.5rem;margin-top:0rem;margin-bottom:0rem;padding-top:2rem;padding-bottom:2rem"><!-- wp:paragraph {"align":"right","style":{"typography":{"fontSize":"4rem","lineHeight":"1"}}} -->
<p class="has-text-align-right" style="font-size:4rem;line-height:1">
<?php
/* Translators: WordPress link. */
$wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'eventual' ) ) . '" rel="nofollow">WordPress</a>';
echo sprintf(
esc_html__( 'Designed with %1$s', 'eventual' ),
$wordpress_link
);
?>
</p>
<!-- /wp:paragraph -->
</div>
<!-- /wp:group -->

View file

@ -0,0 +1,10 @@
<?php
/**
* Title: Hidden No Results Content
* Slug: eventual/hidden-no-results-content
* Inserter: no
*/
?>
<!-- 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', 'eventual' ); ?></p>
<!-- /wp:paragraph -->

View file

@ -0,0 +1,60 @@
<?php
/**
* Title: home
* Slug: eventual/home
* Categories: hidden
* Inserter: no
*/
?>
<!-- wp:cover {"url":"<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/image-from-rawpixel-id-5922463_distorted.jpg","dimRatio":0,"overlayColor":"contrast","minHeight":100,"minHeightUnit":"vh","contentPosition":"center center","align":"full","style":{"spacing":{"padding":{"top":"3rem","right":"10%","bottom":"3rem","left":"10%"},"margin":{"top":"0px","bottom":"0px"}}},"textColor":"base","layout":{"type":"default"}} -->
<div class="wp-block-cover alignfull has-base-color has-text-color" style="margin-top:0px;margin-bottom:0px;padding-top:3rem;padding-right:10%;padding-bottom:3rem;padding-left:10%;min-height:100vh"><span aria-hidden="true" class="wp-block-cover__background has-contrast-background-color has-background-dim-0 has-background-dim"></span><img class="wp-block-cover__image-background" alt="" src="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/image-from-rawpixel-id-5922463_distorted.jpg" data-object-fit="cover"/><div class="wp-block-cover__inner-container"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"bottom":"0.3rem","top":"0rem","right":"0rem","left":"0rem"},"margin":{"top":"0rem","bottom":"0rem"}},"border":{"bottom":{"width":"0.2rem"},"top":[],"right":[],"left":[]}},"layout":{"type":"flex","justifyContent":"space-between","flexWrap":"wrap"}} -->
<div class="wp-block-group alignfull" style="border-bottom-width:0.2rem;margin-top:0rem;margin-bottom:0rem;padding-top:0rem;padding-right:0rem;padding-bottom:0.3rem;padding-left:0rem"><!-- wp:site-title {"style":{"elements":{"link":{"color":{"text":"var:preset|color|base"}}}},"textColor":"base"} /-->
<!-- wp:navigation {"overlayMenu":"never","layout":{"type":"flex","setCascadingProperties":true,"justifyContent":"right","orientation":"horizontal"},"style":{"spacing":{"margin":{"top":"0"},"blockGap":""}}} /--></div>
<!-- /wp:group -->
<!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0rem","margin":{"top":"4rem","bottom":"8rem"}}},"layout":{"type":"flex","orientation":"vertical","flexWrap":"nowrap","justifyContent":"stretch"}} -->
<div class="wp-block-group alignfull" style="margin-top:4rem;margin-bottom:8rem"><!-- wp:heading {"level":1,"style":{"spacing":{"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}},"typography":{"lineHeight":"0.9"}}} -->
<h1 class="wp-block-heading" style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;line-height:0.9">The Sun Never sets on A8C</h1>
<!-- /wp:heading -->
<!-- wp:heading {"level":1,"style":{"spacing":{"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}},"typography":{"lineHeight":"0.9"}}} -->
<h1 class="wp-block-heading" style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;line-height:0.9">5k Global run</h1>
<!-- /wp:heading -->
<!-- wp:paragraph {"style":{"spacing":{"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}},"typography":{"textTransform":"uppercase","lineHeight":"0.9","fontStyle":"normal","fontWeight":"700","letterSpacing":"-0.1rem","fontSize":"7.5rem"}},"fontFamily":"barlow-condensed"} -->
<p class="has-barlow-condensed-font-family" style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;font-size:7.5rem;font-style:normal;font-weight:700;letter-spacing:-0.1rem;line-height:0.9;text-transform:uppercase">28&nbsp;Mar 2023, Worldwide.</p>
<!-- /wp:paragraph --></div>
<!-- /wp:group -->
<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"0.3rem","right":"0rem","bottom":"0.5rem","left":"0rem"},"blockGap":"0px","margin":{"top":"0px","bottom":"0px"}},"border":{"top":{"width":"0.2rem"},"right":[],"bottom":[],"left":[]}},"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"space-between"}} -->
<div class="wp-block-group alignfull" style="border-top-width:0.2rem;margin-top:0px;margin-bottom:0px;padding-top:0.3rem;padding-right:0rem;padding-bottom:0.5rem;padding-left:0rem"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"bottom":"0rem","top":"0rem","right":"0rem","left":"0rem"},"margin":{"top":"0rem","bottom":"0rem"}}},"layout":{"type":"flex","justifyContent":"right"}} -->
<div class="wp-block-group alignfull" style="margin-top:0rem;margin-bottom:0rem;padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem"><!-- wp:paragraph {"align":"right","style":{"typography":{"fontSize":"3rem","lineHeight":"1","textTransform":"uppercase","fontStyle":"normal","fontWeight":"700","letterSpacing":"-0.1rem"},"elements":{"link":{"color":{"text":"var:preset|color|base"}}}},"textColor":"base"} -->
<p class="has-text-align-right has-base-color has-text-color has-link-color" style="font-size:3rem;font-style:normal;font-weight:700;letter-spacing:-0.1rem;line-height:1;text-transform:uppercase"><a href="https://eventual.mystagingwebsite.com/2023/" data-type="page" data-id="481">Last edition</a></p>
<!-- /wp:paragraph --></div>
<!-- /wp:group -->
<!-- wp:query {"queryId":0,"query":{"perPage":"1","pages":0,"offset":0,"postType":"post","order":"asc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":false,"taxQuery":{"category":[6]},"parents":[]},"tagName":"main","align":"full","layout":{"type":"default"}} -->
<main class="wp-block-query alignfull"><!-- wp:post-template {"align":"full"} -->
<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"bottom":"0rem","top":"0rem","right":"0rem","left":"0rem"},"margin":{"top":"0px","bottom":"0px"}}},"layout":{"type":"flex","justifyContent":"right"}} -->
<div class="wp-block-group alignfull" style="margin-top:0px;margin-bottom:0px;padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem"><!-- wp:post-title {"textAlign":"right","level":1,"isLink":true,"style":{"typography":{"fontSize":"3rem","lineHeight":"1","textTransform":"uppercase"},"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}}} /--></div>
<!-- /wp:group -->
<!-- /wp:post-template --></main>
<!-- /wp:query --></div>
<!-- /wp:group -->
<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"bottom":"0rem","top":"0.3rem"},"margin":{"top":"0rem","bottom":"0rem"}},"border":{"top":{"width":"0.2rem"},"right":[],"bottom":[],"left":[]}},"layout":{"type":"flex","justifyContent":"left"}} -->
<div class="wp-block-group alignfull" style="border-top-width:0.2rem;margin-top:0rem;margin-bottom:0rem;padding-top:0.3rem;padding-bottom:0rem"><!-- wp:paragraph {"align":"left","style":{"typography":{"fontSize":"3rem","lineHeight":"1","textTransform":"uppercase","fontStyle":"normal","fontWeight":"700","letterSpacing":"-0.1rem"},"elements":{"link":{"color":{"text":"var:preset|color|base"}}}},"textColor":"base"} -->
<p class="has-text-align-left has-base-color has-text-color has-link-color" style="font-size:3rem;font-style:normal;font-weight:700;letter-spacing:-0.1rem;line-height:1;text-transform:uppercase">
<?php
/* Translators: WordPress link. */
$wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'eventual' ) ) . '" rel="nofollow">WordPress</a>';
echo sprintf(
esc_html__( 'Designed with %1$s', 'eventual' ),
$wordpress_link
);
?>
</p>
<!-- /wp:paragraph --></div>
<!-- /wp:group --></div></div>
<!-- /wp:cover -->

View file

@ -0,0 +1,70 @@
<?php
/**
* Title: index
* Slug: eventual/index
* Categories: hidden
* Inserter: no
*/
?>
<!-- wp:group {"style":{"position":{"type":"sticky","top":"0px"},"spacing":{"padding":{"top":"0rem","right":"0rem","bottom":"0rem","left":"0rem"},"margin":{"top":"0px","bottom":"0px"},"blockGap":"0px"}},"backgroundColor":"contrast","textColor":"base","layout":{"type":"constrained"}} -->
<div class="wp-block-group has-base-color has-contrast-background-color has-text-color has-background" style="margin-top:0px;margin-bottom:0px;padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem"><!-- wp:cover {"url":"<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/image-from-rawpixel-id-5922463_distorted.jpg","dimRatio":0,"overlayColor":"contrast","minHeight":100,"minHeightUnit":"vh","contentPosition":"center center","align":"full","style":{"spacing":{"padding":{"top":"3rem","right":"6rem","bottom":"3rem","left":"6rem"},"margin":{"top":"0px","bottom":"0px"}}},"textColor":"base","layout":{"type":"constrained"}} -->
<div class="wp-block-cover alignfull has-base-color has-text-color" style="margin-top:0px;margin-bottom:0px;padding-top:3rem;padding-right:6rem;padding-bottom:3rem;padding-left:6rem;min-height:100vh"><span aria-hidden="true" class="wp-block-cover__background has-contrast-background-color has-background-dim-0 has-background-dim"></span><img class="wp-block-cover__image-background" alt="" src="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/image-from-rawpixel-id-5922463_distorted.jpg" data-object-fit="cover"/><div class="wp-block-cover__inner-container"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"bottom":"1rem","top":"1rem"},"margin":{"top":"0rem","bottom":"6rem"}},"border":{"top":{"width":"0.3rem"},"bottom":{"width":"0.3rem"}}},"layout":{"type":"flex","justifyContent":"space-between","flexWrap":"wrap"}} -->
<div class="wp-block-group alignfull" style="border-top-width:0.3rem;border-bottom-width:0.3rem;margin-top:0rem;margin-bottom:6rem;padding-top:1rem;padding-bottom:1rem"><!-- wp:site-title /-->
<!-- wp:navigation {"overlayMenu":"never","layout":{"type":"flex","setCascadingProperties":true,"justifyContent":"right","orientation":"horizontal"},"style":{"spacing":{"margin":{"top":"0"},"blockGap":""}}} /--></div>
<!-- /wp:group -->
<!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0px","margin":{"top":"0rem","bottom":"6rem"}}},"layout":{"type":"flex","orientation":"vertical","flexWrap":"nowrap","justifyContent":"stretch"}} -->
<div class="wp-block-group alignfull" style="margin-top:0rem;margin-bottom:6rem"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"bottom":"1rem","top":"1rem"}},"border":{"top":{"width":"0.3rem"}}},"layout":{"type":"flex","justifyContent":"space-between"}} -->
<div class="wp-block-group alignfull" style="border-top-width:0.3rem;padding-top:1rem;padding-bottom:1rem"><!-- wp:heading {"level":1,"style":{"spacing":{"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}}} -->
<h1 class="wp-block-heading" style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px">The Sun Never sets on A8C 5K</h1>
<!-- /wp:heading --></div>
<!-- /wp:group -->
<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"bottom":"1rem","top":"1rem"}},"border":{"top":{"width":"0.3rem"}}},"layout":{"type":"flex","justifyContent":"space-between"}} -->
<div class="wp-block-group alignfull" style="border-top-width:0.3rem;padding-top:1rem;padding-bottom:1rem"><!-- wp:heading {"level":1,"style":{"spacing":{"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}}} -->
<h1 class="wp-block-heading" style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px">Global run Celebration</h1>
<!-- /wp:heading --></div>
<!-- /wp:group -->
<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"bottom":"1rem","top":"1rem"}},"border":{"top":{"width":"0.3rem"},"bottom":{"width":"0.34rem"}}},"layout":{"type":"flex","justifyContent":"space-between"}} -->
<div class="wp-block-group alignfull" style="border-top-width:0.3rem;border-bottom-width:0.34rem;padding-top:1rem;padding-bottom:1rem"><!-- wp:paragraph {"style":{"typography":{"fontSize":"4rem","lineHeight":"1","textTransform":"uppercase","fontStyle":"normal","fontWeight":"600","letterSpacing":"-0.1rem"},"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}}} -->
<p style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;font-size:4rem;font-style:normal;font-weight:600;letter-spacing:-0.1rem;line-height:1;text-transform:uppercase">28&nbsp;Mar 2023 Wherever you are</p>
<!-- /wp:paragraph --></div>
<!-- /wp:group --></div>
<!-- /wp:group -->
<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","bottom":"0px"},"blockGap":"0px"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
<div class="wp-block-group alignfull" style="margin-top:0px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0px"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch","flexWrap":"nowrap"}} -->
<div class="wp-block-group alignfull"><!-- wp:query {"queryId":0,"query":{"perPage":"1","pages":0,"offset":0,"postType":"post","order":"asc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":false,"taxQuery":{"category":[6]},"parents":[]},"tagName":"main","align":"full","layout":{"type":"default"}} -->
<main class="wp-block-query alignfull"><!-- wp:post-template {"align":"full"} -->
<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"bottom":"1rem","top":"1rem"},"margin":{"top":"0px","bottom":"0px"}},"border":{"top":{"width":"0.3rem"}}},"layout":{"type":"flex","justifyContent":"right"}} -->
<div class="wp-block-group alignfull" style="border-top-width:0.3rem;margin-top:0px;margin-bottom:0px;padding-top:1rem;padding-bottom:1rem"><!-- wp:post-title {"textAlign":"right","level":1,"isLink":true,"style":{"typography":{"fontSize":"4rem","lineHeight":"1","textTransform":"uppercase"},"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}}} /--></div>
<!-- /wp:group -->
<!-- /wp:post-template --></main>
<!-- /wp:query --></div>
<!-- /wp:group -->
<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"bottom":"1rem","top":"1rem"},"margin":{"top":"0rem","bottom":"0rem"}},"border":{"top":{"width":"0.3rem"},"right":[],"left":[]}},"layout":{"type":"flex","justifyContent":"right"}} -->
<div class="wp-block-group alignfull" style="border-top-width:0.3rem;margin-top:0rem;margin-bottom:0rem;padding-top:1rem;padding-bottom:1rem"><!-- wp:paragraph {"align":"right","style":{"typography":{"fontSize":"4rem","lineHeight":"1","textTransform":"uppercase","fontStyle":"normal","fontWeight":"600","letterSpacing":"-0.1rem"}}} -->
<p class="has-text-align-right" style="font-size:4rem;font-style:normal;font-weight:600;letter-spacing:-0.1rem;line-height:1;text-transform:uppercase"><a href="https://eventual.mystagingwebsite.com/2023/" data-type="page" data-id="481">Archive</a></p>
<!-- /wp:paragraph --></div>
<!-- /wp:group --></div>
<!-- /wp:group -->
<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"bottom":"1rem","top":"1rem"},"margin":{"top":"0rem","bottom":"0rem"}},"border":{"top":{"width":"0.3rem"},"bottom":{"width":"0.3rem"}}},"layout":{"type":"flex","justifyContent":"left"}} -->
<div class="wp-block-group alignfull" style="border-top-width:0.3rem;border-bottom-width:0.3rem;margin-top:0rem;margin-bottom:0rem;padding-top:1rem;padding-bottom:1rem"><!-- wp:paragraph {"align":"left","style":{"typography":{"fontSize":"4rem","lineHeight":"1","textTransform":"uppercase","fontStyle":"normal","fontWeight":"600","letterSpacing":"-0.1rem"}}} -->
<p class="has-text-align-left" style="font-size:4rem;font-style:normal;font-weight:600;letter-spacing:-0.1rem;line-height:1;text-transform:uppercase">
<?php
/* Translators: WordPress link. */
$wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'eventual' ) ) . '" rel="nofollow">WordPress</a>';
echo sprintf(
esc_html__( 'Designed with %1$s', 'eventual' ),
$wordpress_link
);
?>
</p>
<!-- /wp:paragraph --></div>
<!-- /wp:group --></div></div>
<!-- /wp:cover --></div>
<!-- /wp:group -->

53
eventual/readme.txt Normal file
View file

@ -0,0 +1,53 @@
=== Eventual ===
Contributors: Automattic
Requires at least: 6.1
Tested up to: 6.3
Requires PHP: 5.7
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
== Description ==
As its name states Eventual is a theme designed for events and ceremonies. It is simple, and direct allowing users to display the essence of their subject with a large artwork on the Homepage.
== Changelog ==
= 1.0.0 =
* Initial release
== Copyright ==
Eventual WordPress Theme, (C) 2023 Automattic
Eventual is distributed under the terms of the GNU GPL.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
Barlow Condensed Font
Copyright 2017 The Barlow Project Authors (https://github.com/jpt/barlow)
This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL
License URL: http://scripts.sil.org/OFL
Source: https://tribby.com/
-- End of Barlow Condensed Font credits --
Figtree Font
Copyright 2022 The Figtree Project Authors (https://github.com/erikdkennedy/figtree)
This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL
License URL: https://scripts.sil.org/OFL
Source: https://erikdkennedy.com/
-- End of Figtree Font credits --
"A man walks early morning in Davidson River Campground, Pisgah National Forest, NC"
Source: https://www.rawpixel.com/image/3306149/free-photo-image-forest-sport-working-outdoors-exercise
License: Public Domain CC0
"Free woman running on road image"
Source: https://www.rawpixel.com/image/5922463/photo-image-public-domain-black-person
License: Public Domain CC0

BIN
eventual/screenshot.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 464 KiB

35
eventual/style.css Normal file
View file

@ -0,0 +1,35 @@
/*
Theme Name: Eventual
Theme URI: https://wordpress.com/theme/eventual/
Author: Automattic
Author URI: https://automattic.com
Description: As its name states Eventual is a theme designed for events and ceremonies. It is simple, and direct allowing users to display the essence of their subject with a large artwork on the Homepage.
Requires at least: 6.1
Tested up to: 6.3
Requires PHP: 5.7
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: eventual
Tags: blog, food-and-drink, holiday, one-column, wide-blocks, accessibility-ready, block-patterns, custom-background, custom-colors, custom-header, custom-logo, custom-menu, editor-style, featured-images, flexible-header, full-site-editing, full-width-template, post-formats, rtl-language-support, theme-options, threaded-comments, translation-ready, event-site, ceremony, celebration, celebration-site, shows, concerts, presentation, posters, poster-site, large-type
*/
/*
* Control the hover stylings of outline block style.
* Unnecessary once block styles are configurable via theme.json
* https://github.com/WordPress/gutenberg/issues/42794
*/
.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background):hover {
background-color: var(--wp--preset--color--secondary);
color: var(--wp--preset--color--base);
border-color: var(--wp--preset--color--secondary);
}
/*
* Link styles
* https://github.com/WordPress/gutenberg/issues/42319
*/
a {
text-decoration-thickness: .0625em !important;
text-underline-offset: .15em;
}

View file

@ -0,0 +1 @@
<!-- wp:pattern {"slug":"eventual/404"} /-->

View file

@ -0,0 +1,33 @@
<!-- wp:template-part {"slug":"header","area":"header","align":"full"} /-->
<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"2rem","right":"10%","bottom":"8rem","left":"10%"},"margin":{"top":"0px","bottom":"0px"}}},"backgroundColor":"base","textColor":"contrast","layout":{"type":"default"}} -->
<div class="wp-block-group alignfull has-contrast-color has-base-background-color has-text-color has-background" style="margin-top:0px;margin-bottom:0px;padding-top:2rem;padding-right:10%;padding-bottom:8rem;padding-left:10%"><!-- wp:group {"align":"wide","layout":{"type":"default"}} -->
<div class="wp-block-group alignwide"><!-- wp:query {"queryId":6,"query":{"perPage":"100","pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":false,"taxQuery":{"category":[7]},"parents":[]},"tagName":"main","align":"full","layout":{"type":"default"}} -->
<main class="wp-block-query alignfull"><!-- wp:query-title {"type":"archive","align":"wide","style":{"typography":{"lineHeight":"1","textTransform":"uppercase","fontStyle":"normal","fontWeight":"600","letterSpacing":"-0.1rem","fontSize":"2.5rem"}},"textColor":"contrast","fontFamily":"instrument-sans"} /-->
<!-- wp:post-template {"textColor":"contrast","layout":{"type":"default"}} -->
<!-- wp:group {"style":{"spacing":{"padding":{"top":"0rem","right":"0rem","bottom":"0rem","left":"0rem"},"margin":{"bottom":"6rem"}}},"layout":{"type":"default"}} -->
<div class="wp-block-group" style="margin-bottom:6rem;padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem"><!-- wp:columns {"align":"full","style":{"spacing":{"blockGap":{"top":"1rem","left":"1rem"},"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","bottom":"0px"}},"border":{"top":{"width":"0rem","style":"none"},"right":{"width":"0rem","style":"none"},"bottom":{"width":"0.2rem"},"left":{"width":"0rem","style":"none"}}}} -->
<div class="wp-block-columns alignfull" style="border-top-style:none;border-top-width:0rem;border-right-style:none;border-right-width:0rem;border-bottom-width:0.2rem;border-left-style:none;border-left-width:0rem;margin-top:0px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:column {"width":"70%","style":{"spacing":{"blockGap":"0px"}}} -->
<div class="wp-block-column" style="flex-basis:70%"><!-- wp:group {"style":{"spacing":{"blockGap":"1rem","margin":{"top":"0px","bottom":"0px"},"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch","verticalAlignment":"top"}} -->
<div class="wp-block-group" style="margin-top:0px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:group {"style":{"spacing":{"blockGap":"0rem"}},"layout":{"type":"flex","orientation":"vertical"}} -->
<div class="wp-block-group"><!-- wp:post-title {"level":1,"isLink":true,"style":{"typography":{"fontSize":"5rem","lineHeight":"1","textTransform":"uppercase","fontStyle":"normal","fontWeight":"600","letterSpacing":"-0.1rem"},"elements":{"link":{"color":{"text":"var:preset|color|contrast"}}}},"textColor":"contrast","fontFamily":"barlow-condensed"} /-->
<!-- wp:post-terms {"term":"post_tag","style":{"spacing":{"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}},"typography":{"textTransform":"uppercase","letterSpacing":"-0.1rem","fontSize":"5rem"}},"fontFamily":"barlow-condensed"} /--></div>
<!-- /wp:group -->
<!-- wp:post-excerpt {"moreText":"","showMoreOnNewLine":false,"excerptLength":10,"style":{"spacing":{"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}},"typography":{"textTransform":"uppercase","letterSpacing":"-0.1rem"}}} /--></div>
<!-- /wp:group --></div>
<!-- /wp:column -->
<!-- wp:column {"width":"30%"} -->
<div class="wp-block-column" style="flex-basis:30%"><!-- wp:post-featured-image {"isLink":true,"aspectRatio":"4/3","width":"","height":"","style":{"color":{"duotone":["#3858e9","#ffeecb"]},"layout":{"selfStretch":"fit","flexSize":null}}} /--></div>
<!-- /wp:column --></div>
<!-- /wp:columns --></div>
<!-- /wp:group -->
<!-- /wp:post-template --></main>
<!-- /wp:query --></div>
<!-- /wp:group -->
<!-- wp:template-part {"slug":"footer-light"} /--></div>
<!-- /wp:group -->

View file

@ -0,0 +1 @@
<!-- wp:pattern {"slug":"eventual/home"} /-->

View file

@ -0,0 +1,35 @@
<!-- wp:template-part {"slug":"header","area":"header","align":"full"} /-->
<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"6rem","right":"10%","bottom":"6rem","left":"10%"},"margin":{"top":"0px","bottom":"0px"}}},"backgroundColor":"base","textColor":"contrast","layout":{"type":"default"}} -->
<div class="wp-block-group alignfull has-contrast-color has-base-background-color has-text-color has-background" style="margin-top:0px;margin-bottom:0px;padding-top:6rem;padding-right:10%;padding-bottom:6rem;padding-left:10%"><!-- wp:group {"style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","bottom":"0px"}}},"layout":{"type":"default"}} -->
<div class="wp-block-group" style="margin-top:0px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:query {"queryId":6,"query":{"perPage":"100","pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true,"taxQuery":{"category":[7]},"parents":[]},"tagName":"main","align":"full","layout":{"type":"default"}} -->
<main class="wp-block-query alignfull"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"bottom":"0rem","top":"0rem"},"margin":{"top":"0rem","bottom":"4rem"}}},"layout":{"type":"flex","justifyContent":"left"}} -->
<div class="wp-block-group alignfull" style="margin-top:0rem;margin-bottom:4rem;padding-top:0rem;padding-bottom:0rem"><!-- wp:query-title {"type":"archive","align":"wide","style":{"typography":{"lineHeight":"1","textTransform":"uppercase","fontStyle":"normal","fontWeight":"600","letterSpacing":"-0.1rem","fontSize":"2.5rem"}},"textColor":"contrast","fontFamily":"instrument-sans"} /--></div>
<!-- /wp:group -->
<!-- wp:post-template {"align":"wide","style":{"elements":{"link":{"color":{"text":"var:preset|color|contrast"}}}},"textColor":"contrast"} -->
<!-- wp:group {"style":{"spacing":{"padding":{"top":"0rem","right":"0rem","bottom":"0rem","left":"0rem"},"margin":{"bottom":"6rem"}},"border":{"bottom":{"width":"0.3rem"},"top":[],"right":[],"left":[]}},"layout":{"type":"default"}} -->
<div class="wp-block-group" style="border-bottom-width:0.3rem;margin-bottom:6rem;padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem"><!-- wp:columns {"align":"full","style":{"spacing":{"blockGap":{"top":"1rem","left":"1rem"},"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","bottom":"0px"}}}} -->
<div class="wp-block-columns alignfull" style="margin-top:0px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:column {"width":"75%","style":{"spacing":{"blockGap":"0px"}}} -->
<div class="wp-block-column" style="flex-basis:75%"><!-- wp:group {"style":{"spacing":{"blockGap":"1rem","margin":{"top":"0px","bottom":"0px"},"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch","verticalAlignment":"top"}} -->
<div class="wp-block-group" style="margin-top:0px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:group {"style":{"spacing":{"blockGap":"0rem"}},"layout":{"type":"flex","orientation":"vertical"}} -->
<div class="wp-block-group"><!-- wp:post-title {"level":1,"isLink":true,"style":{"typography":{"fontSize":"5rem","lineHeight":"1","textTransform":"uppercase","fontStyle":"normal","fontWeight":"600","letterSpacing":"-0.1rem"}}} /-->
<!-- wp:post-terms {"term":"post_tag","style":{"spacing":{"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}},"typography":{"textTransform":"uppercase","letterSpacing":"-0.1rem","fontSize":"5rem"}},"fontFamily":"barlow-condensed"} /--></div>
<!-- /wp:group -->
<!-- wp:post-excerpt {"moreText":"","showMoreOnNewLine":false,"excerptLength":10,"style":{"spacing":{"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}},"typography":{"textTransform":"uppercase","letterSpacing":"-0.1rem"}}} /--></div>
<!-- /wp:group --></div>
<!-- /wp:column -->
<!-- wp:column {"width":"25%"} -->
<div class="wp-block-column" style="flex-basis:25%"><!-- wp:post-featured-image {"isLink":true,"aspectRatio":"4/3","width":"","height":"","style":{"color":{"duotone":["#3858e9","#ffeecb"]},"layout":{"selfStretch":"fit","flexSize":null}}} /--></div>
<!-- /wp:column --></div>
<!-- /wp:columns --></div>
<!-- /wp:group -->
<!-- /wp:post-template --></main>
<!-- /wp:query --></div>
<!-- /wp:group -->
<!-- wp:template-part {"slug":"footer-light"} /--></div>
<!-- /wp:group -->

View file

@ -0,0 +1,13 @@
<!-- wp:template-part {"slug":"header","area":"header","align":"full"} /-->
<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"2rem","right":"10%","bottom":"8rem","left":"10%"},"margin":{"top":"0px","bottom":"0px"}}},"backgroundColor":"base","textColor":"contrast","layout":{"type":"default"}} -->
<div class="wp-block-group alignfull has-contrast-color has-base-background-color has-text-color has-background" style="margin-top:0px;margin-bottom:0px;padding-top:2rem;padding-right:10%;padding-bottom:8rem;padding-left:10%"><!-- wp:group {"align":"wide","layout":{"type":"default"}} -->
<div class="wp-block-group alignwide"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"blockGap":"1rem"},"elements":{"link":{"color":{"text":"var:preset|color|contrast"}}}},"textColor":"contrast","layout":{"type":"default"}} -->
<div class="wp-block-group alignfull has-contrast-color has-text-color has-link-color" style="padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:post-title {"level":1,"align":"wide","style":{"typography":{"fontSize":"4rem","textTransform":"uppercase"},"elements":{"link":{"color":{"text":"var:preset|color|contrast"}}}},"textColor":"contrast","fontFamily":"barlow-condensed"} /-->
<!-- wp:post-content {"lock":{"move":false,"remove":false},"layout":{"type":"default"}} /--></div>
<!-- /wp:group --></div>
<!-- /wp:group -->
<!-- wp:template-part {"slug":"footer-light"} /--></div>
<!-- /wp:group -->

View file

@ -0,0 +1,35 @@
<!-- wp:template-part {"slug":"header","area":"header","align":"full"} /-->
<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"2rem","right":"10%","bottom":"8rem","left":"10%"},"margin":{"top":"0px","bottom":"0px"}}},"backgroundColor":"base","textColor":"contrast","layout":{"type":"default"}} -->
<div class="wp-block-group alignfull has-contrast-color has-base-background-color has-text-color has-background" style="margin-top:0px;margin-bottom:0px;padding-top:2rem;padding-right:10%;padding-bottom:8rem;padding-left:10%"><!-- wp:group {"align":"wide","layout":{"type":"default"}} -->
<div class="wp-block-group alignwide"><!-- wp:group {"layout":{"type":"default"}} -->
<div class="wp-block-group"><!-- wp:search {"showLabel":false,"width":50,"widthUnit":"%","buttonUseIcon":true,"style":{"border":{"radius":"0px","width":"0.2rem"}},"borderColor":"contrast"} /--></div>
<!-- /wp:group -->
<!-- wp:query {"queryId":6,"query":{"perPage":"100","pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true,"taxQuery":{"category":[7]},"parents":[]},"tagName":"main","align":"full","layout":{"type":"default"}} -->
<main class="wp-block-query alignfull"><!-- wp:post-template {"textColor":"contrast","layout":{"type":"default"}} -->
<!-- wp:group {"style":{"spacing":{"padding":{"top":"0rem","right":"0rem","bottom":"0rem","left":"0rem"},"margin":{"bottom":"6rem"}},"border":{"bottom":{"width":"0.2rem"},"top":[],"right":[],"left":[]}},"layout":{"type":"default"}} -->
<div class="wp-block-group" style="border-bottom-width:0.2rem;margin-bottom:6rem;padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem"><!-- wp:columns {"align":"full","style":{"spacing":{"blockGap":{"top":"1rem","left":"1rem"},"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","bottom":"0px"}}}} -->
<div class="wp-block-columns alignfull" style="margin-top:0px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:column {"width":"75%","style":{"spacing":{"blockGap":"0px"}}} -->
<div class="wp-block-column" style="flex-basis:75%"><!-- wp:group {"style":{"spacing":{"blockGap":"1rem","margin":{"top":"0px","bottom":"0px"},"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch","verticalAlignment":"top"}} -->
<div class="wp-block-group" style="margin-top:0px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:group {"style":{"spacing":{"blockGap":"0rem"}},"layout":{"type":"flex","orientation":"vertical"}} -->
<div class="wp-block-group"><!-- wp:post-title {"level":1,"isLink":true,"style":{"typography":{"fontSize":"5rem","lineHeight":"1","textTransform":"uppercase","fontStyle":"normal","fontWeight":"600","letterSpacing":"-0.1rem"},"elements":{"link":{"color":{"text":"var:preset|color|contrast"}}}},"textColor":"contrast","fontFamily":"barlow-condensed"} /-->
<!-- wp:post-terms {"term":"post_tag","style":{"spacing":{"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}},"typography":{"textTransform":"uppercase","letterSpacing":"-0.1rem","fontSize":"5rem"}},"fontFamily":"barlow-condensed"} /--></div>
<!-- /wp:group -->
<!-- wp:post-excerpt {"moreText":"","showMoreOnNewLine":false,"excerptLength":10,"style":{"spacing":{"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}},"typography":{"textTransform":"uppercase","letterSpacing":"-0.1rem"}}} /--></div>
<!-- /wp:group --></div>
<!-- /wp:column -->
<!-- wp:column {"width":"25%"} -->
<div class="wp-block-column" style="flex-basis:25%"><!-- wp:post-featured-image {"isLink":true,"aspectRatio":"4/3","width":"","height":"","style":{"color":{"duotone":["#3858e9","#ffeecb"]},"layout":{"selfStretch":"fit","flexSize":null}}} /--></div>
<!-- /wp:column --></div>
<!-- /wp:columns --></div>
<!-- /wp:group -->
<!-- /wp:post-template --></main>
<!-- /wp:query --></div>
<!-- /wp:group -->
<!-- wp:template-part {"slug":"footer-light"} /--></div>
<!-- /wp:group -->

View file

@ -0,0 +1,53 @@
<!-- wp:template-part {"slug":"header","area":"header","align":"full"} /-->
<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"2rem","right":"10%","bottom":"8rem","left":"10%"},"margin":{"top":"0px","bottom":"0px"}}},"backgroundColor":"base","textColor":"contrast","layout":{"type":"default"}} -->
<div class="wp-block-group alignfull has-contrast-color has-base-background-color has-text-color has-background" style="margin-top:0px;margin-bottom:0px;padding-top:2rem;padding-right:10%;padding-bottom:8rem;padding-left:10%"><!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0px"},"elements":{"link":{"color":{"text":"var:preset|color|contrast"}}}},"backgroundColor":"base","textColor":"contrast","layout":{"type":"default"}} -->
<div class="wp-block-group alignfull has-contrast-color has-base-background-color has-text-color has-background has-link-color"><!-- wp:group {"align":"full","layout":{"type":"flex","orientation":"vertical","justifyContent":"left"}} -->
<div class="wp-block-group alignfull"><!-- wp:group {"align":"wide","style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"blockGap":"1rem"},"elements":{"link":{"color":{"text":"var:preset|color|contrast"}}}},"textColor":"contrast","layout":{"type":"constrained","justifyContent":"left"}} -->
<div class="wp-block-group alignwide has-contrast-color has-text-color has-link-color" style="padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:post-title {"level":1,"align":"wide","style":{"typography":{"fontSize":"4rem","textTransform":"uppercase"}},"textColor":"contrast","fontFamily":"barlow-condensed"} /-->
<!-- wp:post-content {"lock":{"move":false,"remove":false},"layout":{"type":"constrained","justifyContent":"left"}} /--></div>
<!-- /wp:group -->
<!-- wp:group {"style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}},"layout":{"type":"constrained","justifyContent":"left"}} -->
<div class="wp-block-group" style="padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:comments {"align":"wide","style":{"elements":{"link":{"color":{"text":"var:preset|color|contrast"}}}},"textColor":"contrast","className":"wp-block-comments-query-loop"} -->
<div class="wp-block-comments alignwide wp-block-comments-query-loop has-contrast-color has-text-color has-link-color"><!-- wp:comments-title {"showPostTitle":false,"textColor":"contrast"} /-->
<!-- wp:comment-template {"style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}}} -->
<!-- wp:group {"style":{"spacing":{"margin":{"top":"0","bottom":"4rem"},"blockGap":"2rem"}}} -->
<div class="wp-block-group" style="margin-top:0;margin-bottom:4rem"><!-- wp:group {"style":{"spacing":{"blockGap":"0.5em"}},"layout":{"type":"flex","flexWrap":"nowrap","verticalAlignment":"top"}} -->
<div class="wp-block-group"><!-- wp:avatar {"size":40,"style":{"border":{"radius":"40px"},"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}},"color":{"duotone":["#3858e9","#ffeecb"]}}} /-->
<!-- wp:group {"style":{"spacing":{"blockGap":"0.5rem"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
<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 {"style":{"typography":{"textTransform":"uppercase"}}} /--></div>
<!-- /wp:group --></div>
<!-- /wp:group --></div>
<!-- /wp:group -->
<!-- wp:comment-content /-->
<!-- wp:comment-reply-link {"style":{"typography":{"textTransform":"uppercase"}}} /--></div>
<!-- /wp:group -->
<!-- /wp:comment-template -->
<!-- wp:comments-pagination -->
<!-- wp:comments-pagination-previous /-->
<!-- wp:comments-pagination-numbers /-->
<!-- wp:comments-pagination-next /-->
<!-- /wp:comments-pagination -->
<!-- wp:post-comments-form {"style":{"elements":{"link":{"color":{"text":"var:preset|color|contrast"}}}},"textColor":"contrast"} /--></div>
<!-- /wp:comments --></div>
<!-- /wp:group --></div>
<!-- /wp:group --></div>
<!-- /wp:group -->
<!-- wp:template-part {"slug":"footer-light"} /--></div>
<!-- /wp:group -->

657
eventual/theme.json Normal file
View file

@ -0,0 +1,657 @@
{
"settings": {
"appearanceTools": true,
"color": {
"background": true,
"custom": true,
"customDuotone": true,
"customGradient": true,
"defaultDuotone": true,
"defaultGradients": true,
"defaultPalette": true,
"duotone": [],
"gradients": [],
"palette": [
{
"color": "#ffeecb",
"name": "Base",
"slug": "base"
},
{
"color": "#3858e9",
"name": "Contrast",
"slug": "contrast"
},
{
"color": "#33f078",
"name": "Secondary",
"slug": "secondary"
}
],
"text": true
},
"layout": {
"contentSize": "1080px",
"wideSize": "1280px"
},
"shadow": {
"defaultPresets": true,
"presets": []
},
"spacing": {
"customSpacingSize": true,
"spacingScale": {
"increment": 1.5,
"mediumStep": 1.5,
"operator": "*",
"steps": 7,
"unit": "rem"
},
"spacingSizes": [],
"units": [
"%",
"px",
"em",
"rem",
"vh",
"vw"
]
},
"typography": {
"customFontSize": true,
"dropCap": true,
"fluid": true,
"fontFamilies": [
{
"fontFace": [],
"fontFamily": "-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif",
"name": "System Font",
"slug": "system-font"
},
{
"fontFace": [
{
"fontFamily": "Barlow Condensed",
"fontStyle": "normal",
"fontWeight": "600",
"src": [
"file:./assets/fonts/barlow-condensed_normal_600.ttf"
]
},
{
"fontFamily": "Barlow Condensed",
"fontStyle": "italic",
"fontWeight": "600",
"src": [
"file:./assets/fonts/barlow-condensed_italic_600.ttf"
]
}
],
"fontFamily": "Barlow Condensed",
"slug": "barlow-condensed"
},
{
"fontFace": [
{
"fontFamily": "Figtree",
"fontStyle": "normal",
"fontWeight": "400",
"src": [
"file:./assets/fonts/figtree_normal_400.ttf"
]
},
{
"fontFamily": "Figtree",
"fontStyle": "italic",
"fontWeight": "400",
"src": [
"file:./assets/fonts/figtree_italic_400.ttf"
]
},
{
"fontFamily": "Figtree",
"fontStyle": "normal",
"fontWeight": "700",
"src": [
"file:./assets/fonts/figtree_normal_700.ttf"
]
},
{
"fontFamily": "Figtree",
"fontStyle": "italic",
"fontWeight": "700",
"src": [
"file:./assets/fonts/figtree_italic_700.ttf"
]
}
],
"fontFamily": "Figtree",
"slug": "figtree"
}
],
"fontSizes": [
{
"fluid": {
"max": "1.0625rem",
"min": "0.825rem"
},
"name": "Small",
"size": "1rem",
"slug": "small"
},
{
"fluid": {
"max": "1.25rem",
"min": "1rem"
},
"name": "Medium",
"size": "1.125rem",
"slug": "medium"
},
{
"fluid": {
"max": "2rem",
"min": "1.75rem"
},
"name": "Large",
"size": "1.75rem",
"slug": "large"
},
{
"fluid": {
"max": "3rem",
"min": "2.5rem"
},
"name": "Extra Large",
"size": "3rem",
"slug": "x-large"
}
],
"fontStyle": true,
"fontWeight": true,
"letterSpacing": true,
"textDecoration": true,
"textTransform": true
},
"useRootPaddingAwareAlignments": true
},
"styles": {
"blocks": {
"core/code": {
"border": {
"color": "var(--wp--preset--color--contrast)",
"radius": "0.25rem",
"style": "solid",
"width": "2px"
},
"spacing": {
"padding": {
"bottom": "var(--wp--preset--spacing--50)",
"left": "var(--wp--preset--spacing--50)",
"right": "var(--wp--preset--spacing--50)",
"top": "var(--wp--preset--spacing--50)"
}
},
"typography": {
"fontFamily": "monospace"
}
},
"core/comment-author-name": {
"typography": {
"fontSize": "var(--wp--preset--font-size--small)"
}
},
"core/comment-content": {
"typography": {
"fontSize": "2.5rem",
"fontStyle": "normal",
"fontWeight": "400"
}
},
"core/comment-date": {
"typography": {
"fontSize": "var(--wp--preset--font-size--small)"
}
},
"core/comment-edit-link": {
"typography": {
"fontSize": "var(--wp--preset--font-size--small)"
}
},
"core/comment-reply-link": {
"typography": {
"fontSize": "var(--wp--preset--font-size--small)"
}
},
"core/comments": {
"color": {
"text": "var(--wp--preset--color--contrast)"
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--contrast)"
}
}
}
},
"core/cover": {
"color": {
"text": "var(--wp--preset--color--base)"
}
},
"core/gallery": {
"spacing": {
"margin": {
"bottom": "var(--wp--preset--spacing--50)"
}
}
},
"core/heading": {
"spacing": {
"margin": {
"bottom": "0em",
"top": "1em"
},
"padding": {
"bottom": "0px",
"top": "0px"
}
},
"typography": {
"letterSpacing": "-0.1rem",
"lineHeight": "1"
}
},
"core/list": {
"spacing": {
"margin": {
"bottom": "1rem",
"top": "1rem"
},
"padding": {
"left": "var(--wp--preset--spacing--70)"
}
},
"typography": {
"lineHeight": "1.3"
}
},
"core/list-item": {
"typography": {
"fontSize": "2.5rem",
"letterSpacing": "-0.05rem",
"lineHeight": "1.3"
}
},
"core/navigation": {
"elements": {
"link": {
":hover": {
"typography": {
"textDecoration": "underline"
}
},
"typography": {
"textDecoration": "none"
}
}
},
"typography": {
"fontSize": "3rem",
"fontStyle": "normal",
"fontWeight": "700",
"letterSpacing": "-0.1rem",
"lineHeight": "1",
"textTransform": "uppercase"
}
},
"core/paragraph": {
"spacing": {
"margin": {
"bottom": "1rem",
"top": "1rem"
}
},
"typography": {
"fontSize": "2.5rem",
"letterSpacing": "-0.05rem",
"lineHeight": "1.3",
"textTransform": "none"
}
},
"core/post-author-name": {
"elements": {
"link": {
":hover": {
"typography": {
"textDecoration": "underline"
}
},
"typography": {
"textDecoration": "none"
}
}
}
},
"core/post-comments-form": {
"color": {
"text": "var(--wp--preset--color--contrast)"
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--contrast)"
}
}
}
},
"core/post-content": {
"typography": {
"fontStyle": "normal",
"fontWeight": "400",
"lineHeight": "1.2"
}
},
"core/post-date": {
"color": {
"text": "var(--wp--preset--color--contrast)"
},
"elements": {
"link": {
":hover": {
"typography": {
"textDecoration": "underline"
}
},
"typography": {
"textDecoration": "none"
}
}
},
"typography": {
"fontSize": "var(--wp--preset--font-size--small)"
}
},
"core/post-excerpt": {
"typography": {
"fontSize": "2rem",
"lineHeight": "1"
}
},
"core/post-terms": {
"typography": {
"fontSize": "2rem",
"lineHeight": "1"
}
},
"core/post-title": {
"color": {
"text": "var(--wp--preset--color--base)"
},
"elements": {
"link": {
":hover": {
"typography": {
"textDecoration": "underline"
}
},
"color": {
"text": "var(--wp--preset--color--base)"
},
"typography": {
"textDecoration": "none"
}
}
},
"spacing": {
"margin": {
"bottom": "0rem",
"top": "0rem"
},
"padding": {
"bottom": "0rem",
"top": "0rem"
}
},
"typography": {
"fontFamily": "var(--wp--preset--font-family--figtree)",
"fontSize": "var(--wp--preset--font-size--x-large)",
"letterSpacing": "-0.1rem",
"lineHeight": "1",
"textTransform": "none"
}
},
"core/pullquote": {
"border": {
"color": "var(--wp--preset--color--contrast)",
"style": "solid",
"width": "1px 0"
},
"spacing": {
"padding": {
"bottom": "var(--wp--preset--spacing--50)",
"left": "var(--wp--preset--spacing--50)",
"right": "var(--wp--preset--spacing--50)",
"top": "var(--wp--preset--spacing--50)"
}
},
"typography": {
"fontSize": "var(--wp--preset--font-size--large)",
"fontStyle": "italic"
}
},
"core/quote": {
"border": {
"color": "var(--wp--preset--color--contrast)",
"style": "solid",
"width": "0 0 0 1px"
},
"spacing": {
"padding": {
"left": "var(--wp--preset--spacing--50)"
}
},
"typography": {
"fontStyle": "normal"
}
},
"core/search": {
"typography": {
"fontSize": "var(--wp--preset--font-size--medium)",
"lineHeight": "1.6"
}
},
"core/separator": {
"border": {
"color": "currentColor",
"style": "solid",
"width": "0 0 1px 0"
},
"color": {
"text": "var(--wp--preset--color--contrast)"
}
},
"core/site-tagline": {
"typography": {
"fontSize": "4rem",
"fontStyle": "normal",
"fontWeight": "600",
"letterSpacing": "-0.05rem",
"lineHeight": "1",
"textTransform": "uppercase"
}
},
"core/site-title": {
"color": {
"text": "var(--wp--preset--color--contrast)"
},
"elements": {
"link": {
":hover": {
"typography": {
"textDecoration": "underline"
}
},
"color": {
"text": "var(--wp--preset--color--contrast)"
},
"typography": {
"textDecoration": "none"
}
}
},
"typography": {
"fontFamily": "var(--wp--preset--font-family--d-din-exp)",
"fontSize": "3rem",
"fontStyle": "normal",
"fontWeight": "700",
"letterSpacing": "-0.1rem",
"lineHeight": "1",
"textTransform": "uppercase"
}
}
},
"color": {
"background": "var(--wp--preset--color--base)",
"text": "var(--wp--preset--color--contrast)"
},
"elements": {
"button": {
":active": {
"color": {
"background": "var(--wp--preset--color--contrast)",
"text": "var(--wp--preset--color--base)"
}
},
":focus": {
"color": {
"background": "var(--wp--preset--color--contrast)",
"text": "var(--wp--preset--color--base)"
},
"outline": {
"color": "var(--wp--preset--color--contrast)",
"offset": "2px",
"style": "dotted",
"width": "1px"
}
},
":hover": {
"color": {
"background": "var(--wp--preset--color--secondary)",
"text": "var(--wp--preset--color--base)"
}
},
"border": {
"radius": "0.25rem"
},
"color": {
"background": "var(--wp--preset--color--contrast)",
"text": "var(--wp--preset--color--base)"
},
"typography": {
"fontSize": "2.5rem",
"fontStyle": "normal",
"fontWeight": "600",
"lineHeight": "1"
}
},
"caption": {
"color": {
"text": "var(--wp--preset--color--contrast)"
}
},
"h1": {
"typography": {
"fontSize": "7.5rem",
"letterSpacing": "-0.1rem",
"lineHeight": "1"
}
},
"h2": {
"typography": {
"fontSize": "4rem",
"lineHeight": "1"
}
},
"h3": {
"typography": {
"fontSize": "4rem",
"lineHeight": "1"
}
},
"h4": {
"typography": {
"fontSize": "2rem",
"lineHeight": "1"
}
},
"h5": {
"typography": {
"fontSize": "2rem",
"lineHeight": "1"
}
},
"h6": {
"typography": {
"fontSize": "2rem",
"lineHeight": "1"
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--contrast)"
},
"typography": {
"fontFamily": "var(--wp--preset--font-family--barlow-condensed)",
"fontStyle": "normal",
"fontWeight": "700",
"letterSpacing": "-0.1rem",
"lineHeight": "1",
"textTransform": "uppercase"
}
},
"link": {
":hover": {
"typography": {
"textDecoration": "none"
}
},
"color": {
"text": "var(--wp--preset--color--contrast)"
},
"typography": {
"textDecoration": "none"
}
}
},
"spacing": {
"blockGap": "4rem",
"padding": {
"bottom": "0rem",
"left": "2rem",
"right": "2rem",
"top": "0rem"
}
},
"typography": {
"fontFamily": "var(--wp--preset--font-family--figtree)",
"fontSize": "var(--wp--preset--font-size--medium)",
"fontStyle": "normal",
"fontWeight": "400",
"lineHeight": "1"
}
},
"templateParts": [
{
"area": "header",
"name": "header"
},
{
"area": "footer",
"name": "footer"
}
],
"version": 2,
"$schema": "https://schemas.wp.org/trunk/theme.json"
}