Trailblazer: add theme (#7907)
Co-authored-by: Henrique 'Foca' Iamarino <henriquefoca@gmail.com>
This commit is contained in:
parent
0265254d59
commit
c23b7d0218
35 changed files with 1521 additions and 0 deletions
BIN
trailblazer/assets/fonts/libre-franklin_700.ttf
Normal file
BIN
trailblazer/assets/fonts/libre-franklin_700.ttf
Normal file
Binary file not shown.
BIN
trailblazer/assets/fonts/libre-franklin_700italic.ttf
Normal file
BIN
trailblazer/assets/fonts/libre-franklin_700italic.ttf
Normal file
Binary file not shown.
BIN
trailblazer/assets/fonts/libre-franklin_italic.ttf
Normal file
BIN
trailblazer/assets/fonts/libre-franklin_italic.ttf
Normal file
Binary file not shown.
BIN
trailblazer/assets/fonts/libre-franklin_regular.ttf
Normal file
BIN
trailblazer/assets/fonts/libre-franklin_regular.ttf
Normal file
Binary file not shown.
BIN
trailblazer/assets/fonts/new-century-schoolbook_italic_400.ttf
Normal file
BIN
trailblazer/assets/fonts/new-century-schoolbook_italic_400.ttf
Normal file
Binary file not shown.
BIN
trailblazer/assets/fonts/new-century-schoolbook_normal_400.ttf
Normal file
BIN
trailblazer/assets/fonts/new-century-schoolbook_normal_400.ttf
Normal file
Binary file not shown.
60
trailblazer/functions.php
Normal file
60
trailblazer/functions.php
Normal file
|
@ -0,0 +1,60 @@
|
|||
<?php
|
||||
/**
|
||||
* Trailblazer functions and definitions
|
||||
*
|
||||
* @link https://developer.wordpress.org/themes/basics/theme-functions/
|
||||
*
|
||||
* @package Trailblazer
|
||||
* @since Trailblazer 1.0
|
||||
*/
|
||||
|
||||
|
||||
if ( ! function_exists( 'trailblazer_support' ) ) :
|
||||
|
||||
/**
|
||||
* Sets up theme defaults and registers support for various WordPress features.
|
||||
*
|
||||
* @since Trailblazer 1.0
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function trailblazer_support() {
|
||||
|
||||
// Enqueue editor styles.
|
||||
add_editor_style( 'style.css' );
|
||||
|
||||
// Make theme available for translation.
|
||||
load_theme_textdomain( 'trailblazer' );
|
||||
}
|
||||
|
||||
endif;
|
||||
|
||||
add_action( 'after_setup_theme', 'trailblazer_support' );
|
||||
|
||||
if ( ! function_exists( 'trailblazer_styles' ) ) :
|
||||
|
||||
/**
|
||||
* Enqueue styles.
|
||||
*
|
||||
* @since Trailblazer 1.0
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function trailblazer_styles() {
|
||||
|
||||
// Register theme stylesheet.
|
||||
wp_register_style(
|
||||
'trailblazer-style',
|
||||
get_stylesheet_directory_uri() . '/style.css',
|
||||
array(),
|
||||
wp_get_theme()->get( 'Version' )
|
||||
);
|
||||
|
||||
// Enqueue theme stylesheet.
|
||||
wp_enqueue_style( 'trailblazer-style' );
|
||||
|
||||
}
|
||||
|
||||
endif;
|
||||
|
||||
add_action( 'wp_enqueue_scripts', 'trailblazer_styles' );
|
22
trailblazer/parts/footer.html
Normal file
22
trailblazer/parts/footer.html
Normal file
|
@ -0,0 +1,22 @@
|
|||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|70","bottom":"10vh"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--70);padding-bottom:10vh"><!-- wp:columns {"verticalAlignment":"top","align":"wide","style":{"spacing":[]}} -->
|
||||
<div class="wp-block-columns alignwide are-vertically-aligned-top"><!-- wp:column {"verticalAlignment":"top","width":"60%","style":{"spacing":{"padding":{"right":"0"}}}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="padding-right:0;flex-basis:60%"><!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|30","margin":{"top":"0","bottom":"0"},"padding":{"top":"0","bottom":"0"}}},"layout":{"type":"flex","flexWrap":"wrap"}} -->
|
||||
<div class="wp-block-group" style="margin-top:0;margin-bottom:0;padding-top:0;padding-bottom:0"><!-- wp:site-title {"style":{"typography":{"textTransform":"none"}}} /-->
|
||||
|
||||
<!-- wp:site-tagline /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"top","width":"5%","style":{"spacing":{"padding":{"right":"0"}}}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="padding-right:0;flex-basis:5%"></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"top","width":"35%"} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="flex-basis:35%"><!-- wp:paragraph {"align":"left","fontSize":"small","fontFamily":"libre-franklin"} -->
|
||||
<p class="has-text-align-left has-libre-franklin-font-family has-small-font-size">
|
||||
Designed with <a href="https://wordpress.org" rel="nofollow">WordPress</a></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></div>
|
||||
<!-- /wp:group -->
|
17
trailblazer/parts/header.html
Normal file
17
trailblazer/parts/header.html
Normal file
|
@ -0,0 +1,17 @@
|
|||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"5vh","bottom":"2.5vh"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-top:5vh;padding-bottom:2.5vh"><!-- wp:group {"align":"wide","style":{"spacing":{"blockGap":"5%"}},"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"space-between","verticalAlignment":"center"}} -->
|
||||
<div class="wp-block-group alignwide"><!-- wp:group {"align":"wide","style":{"spacing":{"blockGap":"var:preset|spacing|30","padding":{"top":"0.22rem"}}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
|
||||
<div class="wp-block-group alignwide" style="padding-top:0.22rem"><!-- wp:site-title {"align":"wide"} /-->
|
||||
|
||||
<!-- wp:navigation {"overlayMenu":"never","layout":{"type":"flex","justifyContent":"left"},"style":{"layout":{"selfStretch":"fit","flexSize":null}}} /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:social-links {"iconColor":"primary","iconColorValue":"#131020","size":"has-small-icon-size","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":"#","service":"behance"} /-->
|
||||
|
||||
<!-- wp:social-link {"url":"#","service":"mastodon"} /-->
|
||||
|
||||
<!-- wp:social-link {"url":"#","service":"linkedin"} /--></ul>
|
||||
<!-- /wp:social-links --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
1
trailblazer/parts/post-meta.html
Normal file
1
trailblazer/parts/post-meta.html
Normal file
|
@ -0,0 +1 @@
|
|||
<!-- wp:pattern {"slug":"trailblazer/post-meta"} /-->
|
1
trailblazer/parts/sidebar.html
Normal file
1
trailblazer/parts/sidebar.html
Normal file
|
@ -0,0 +1 @@
|
|||
<!-- wp:pattern {"slug":"trailblazer/sidebar"} /-->
|
29
trailblazer/patterns/404.php
Normal file
29
trailblazer/patterns/404.php
Normal file
|
@ -0,0 +1,29 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: 404
|
||||
* Slug: trailblazer/404
|
||||
* Categories: hidden
|
||||
* Inserter: no
|
||||
*/
|
||||
?>
|
||||
<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|70","bottom":"var:preset|spacing|70"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--70)"><!-- wp:group {"tagName":"main","lock":{"move":false,"remove":false},"align":"wide","style":{"spacing":{"blockGap":"var:preset|spacing|70"}},"layout":{"type":"default"}} -->
|
||||
<main class="wp-block-group alignwide"><!-- wp:group {"layout":{"type":"flex","orientation":"vertical"}} -->
|
||||
<div class="wp-block-group"><!-- wp:heading {"level":1,"style":{"typography":{"textTransform":"uppercase"}}} -->
|
||||
<h1 class="wp-block-heading" style="text-transform:uppercase"><?php echo __('This is a<br>404 error.', 'trailblazer');?></h1>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><?php echo __('This page is not here. It looks like nothing was found at this location', 'trailblazer');?></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"align":"wide","style":{"spacing":{"margin":{"bottom":"var:preset|spacing|70"}}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignwide" style="margin-bottom:var(--wp--preset--spacing--70)"><!-- wp:search {"showLabel":false,"placeholder":"SEARCH","width":50,"widthUnit":"%","buttonText":"Search","buttonPosition":"button-inside","buttonUseIcon":true} /--></div>
|
||||
<!-- /wp:group --></main>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->
|
59
trailblazer/patterns/archive.php
Normal file
59
trailblazer/patterns/archive.php
Normal file
|
@ -0,0 +1,59 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: archive
|
||||
* Slug: trailblazer/archive
|
||||
* Categories: hidden
|
||||
* Inserter: no
|
||||
*/
|
||||
?>
|
||||
<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|70","bottom":"var:preset|spacing|70"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--70)"><!-- wp:query-title {"type":"archive","align":"wide"} /-->
|
||||
|
||||
<!-- wp:query {"queryId":0,"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true},"align":"wide","layout":{"type":"default"}} -->
|
||||
<div class="wp-block-query alignwide"><!-- wp:post-template {"align":"wide","style":{"spacing":{"blockGap":"10vh"}},"layout":{"type":"default"}} -->
|
||||
<!-- wp:columns {"verticalAlignment":"top","align":"wide","style":{"spacing":[]}} -->
|
||||
<div class="wp-block-columns alignwide are-vertically-aligned-top"><!-- wp:column {"verticalAlignment":"top","width":"60%","style":{"spacing":{"padding":{"right":"0"}}}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="padding-right:0;flex-basis:60%"><!-- wp:post-title {"level":1,"isLink":true} /--></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"top","width":"5%","style":{"spacing":{"padding":{"right":"0"}}}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="padding-right:0;flex-basis:5%"></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"top","width":"35%"} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="flex-basis:35%"><!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|40"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
|
||||
<div class="wp-block-group"><!-- wp:post-excerpt {"moreText":"››","showMoreOnNewLine":false,"excerptLength":33} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|20"}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
|
||||
<div class="wp-block-group"><!-- wp:post-date {"format":"M j, Y"} /-->
|
||||
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontStyle":"normal","fontWeight":"700"}},"fontSize":"small","fontFamily":"libre-franklin"} -->
|
||||
<p class="has-libre-franklin-font-family has-small-font-size" style="font-style:normal;font-weight:700"><?php echo __('·', 'trailblazer');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:post-terms {"term":"category","className":"no-underline"} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns -->
|
||||
<!-- /wp:post-template -->
|
||||
|
||||
<!-- wp:query-pagination -->
|
||||
<!-- wp:query-pagination-previous {"label":"Prev"} /-->
|
||||
|
||||
<!-- wp:query-pagination-numbers /-->
|
||||
|
||||
<!-- wp:query-pagination-next {"label":"Next"} /-->
|
||||
<!-- /wp:query-pagination -->
|
||||
|
||||
<!-- wp:query-no-results -->
|
||||
<!-- wp:heading {"level":1} -->
|
||||
<h1 class="wp-block-heading"><?php echo __('Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'trailblazer');?></h1>
|
||||
<!-- /wp:heading -->
|
||||
<!-- /wp:query-no-results --></div>
|
||||
<!-- /wp:query --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->
|
52
trailblazer/patterns/comments.php
Normal file
52
trailblazer/patterns/comments.php
Normal file
|
@ -0,0 +1,52 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: Comments
|
||||
* slug: trailblazer/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 -->
|
26
trailblazer/patterns/footer.php
Normal file
26
trailblazer/patterns/footer.php
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: footer
|
||||
* Slug: trailblazer/footer
|
||||
* Categories: hidden
|
||||
* Inserter: no
|
||||
*/
|
||||
?>
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|70","bottom":"10vh"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--70);padding-bottom:10vh"><!-- wp:columns {"verticalAlignment":"center","align":"wide","style":{"spacing":[]}} -->
|
||||
<div class="wp-block-columns alignwide are-vertically-aligned-center"><!-- wp:column {"verticalAlignment":"center","width":"66.66%","layout":{"type":"default"}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-center" style="flex-basis:66.66%"><!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|30","margin":{"top":"0","bottom":"0"},"padding":{"top":"0","bottom":"0"}}},"layout":{"type":"flex","flexWrap":"wrap"}} -->
|
||||
<div class="wp-block-group" style="margin-top:0;margin-bottom:0;padding-top:0;padding-bottom:0"><!-- wp:site-title {"style":{"typography":{"textTransform":"none"}}} /-->
|
||||
|
||||
<!-- wp:site-tagline /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"center","width":"33.3%"} -->
|
||||
<div class="wp-block-column is-vertically-aligned-center" style="flex-basis:33.3%"><!-- wp:paragraph {"align":"left","fontSize":"small","fontFamily":"libre-franklin"} -->
|
||||
<p class="has-text-align-left has-libre-franklin-font-family has-small-font-size"><?php echo __('
|
||||
Designed with <a href="https://wordpress.org" rel="nofollow">WordPress</a>', 'trailblazer');?></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></div>
|
||||
<!-- /wp:group -->
|
51
trailblazer/patterns/front-page.php
Normal file
51
trailblazer/patterns/front-page.php
Normal file
|
@ -0,0 +1,51 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: front-page
|
||||
* Slug: trailblazer/front-page
|
||||
* Categories: hidden
|
||||
* Inserter: no
|
||||
*/
|
||||
?>
|
||||
<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|70","bottom":"var:preset|spacing|70"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--70)"><!-- wp:query {"queryId":0,"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true},"align":"wide","layout":{"type":"default"}} -->
|
||||
<div class="wp-block-query alignwide"><!-- wp:post-template {"align":"wide","style":{"spacing":{"blockGap":"10vh"}},"layout":{"type":"default"}} -->
|
||||
<!-- wp:columns {"verticalAlignment":"top","align":"wide","style":{"spacing":[]}} -->
|
||||
<div class="wp-block-columns alignwide are-vertically-aligned-top"><!-- wp:column {"verticalAlignment":"top","width":"60%","style":{"spacing":{"padding":{"right":"0"}}}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="padding-right:0;flex-basis:60%"><!-- wp:post-title {"level":1,"isLink":true} /--></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"top","width":"5%","style":{"spacing":{"padding":{"right":"0"}}}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="padding-right:0;flex-basis:5%"></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"top","width":"35%"} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="flex-basis:35%"><!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|40"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
|
||||
<div class="wp-block-group"><!-- wp:post-excerpt {"moreText":"››","showMoreOnNewLine":false,"excerptLength":33} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|20"}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
|
||||
<div class="wp-block-group"><!-- wp:post-date {"format":"M j, Y"} /-->
|
||||
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontStyle":"normal","fontWeight":"700"}},"fontSize":"small","fontFamily":"libre-franklin"} -->
|
||||
<p class="has-libre-franklin-font-family has-small-font-size" style="font-style:normal;font-weight:700"><?php echo __('·', 'trailblazer');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:post-terms {"term":"category","className":"no-underline"} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns -->
|
||||
<!-- /wp:post-template -->
|
||||
|
||||
<!-- wp:query-pagination -->
|
||||
<!-- wp:query-pagination-previous {"label":"Prev"} /-->
|
||||
|
||||
<!-- wp:query-pagination-numbers /-->
|
||||
|
||||
<!-- wp:query-pagination-next {"label":"Next"} /-->
|
||||
<!-- /wp:query-pagination --></div>
|
||||
<!-- /wp:query --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->
|
47
trailblazer/patterns/home.php
Normal file
47
trailblazer/patterns/home.php
Normal file
|
@ -0,0 +1,47 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: home
|
||||
* Slug: trailblazer/home
|
||||
* Categories: hidden
|
||||
* Inserter: no
|
||||
*/
|
||||
?>
|
||||
<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|70","bottom":"var:preset|spacing|70"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--70)"><!-- wp:query {"queryId":0,"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":false},"align":"wide","layout":{"type":"default"}} -->
|
||||
<div class="wp-block-query alignwide"><!-- wp:post-template {"align":"wide","style":{"spacing":{"blockGap":"10vh"}},"layout":{"type":"default"}} -->
|
||||
<!-- wp:group {"align":"wide","style":{"spacing":{"blockGap":"0","margin":{"bottom":"var:preset|spacing|40"}}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
|
||||
<div class="wp-block-group alignwide" style="margin-bottom:var(--wp--preset--spacing--40)"><!-- wp:post-title {"level":1,"isLink":true,"style":{"typography":{"textTransform":"uppercase"}}} /-->
|
||||
|
||||
<!-- wp:post-terms {"term":"category","style":{"typography":{"textTransform":"uppercase","fontSize":"4.3rem"},"elements":{"link":{"color":{"text":"var:preset|color|tertiary"}}}},"textColor":"tertiary"} /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:columns {"align":"wide","style":{"spacing":[]}} -->
|
||||
<div class="wp-block-columns alignwide"><!-- wp:column {"verticalAlignment":"bottom","width":"66.7%","style":{"spacing":{"padding":{"top":"0px","right":"1rem","bottom":"0px","left":"0px"}}}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-bottom" style="padding-top:0px;padding-right:1rem;padding-bottom:0px;padding-left:0px;flex-basis:66.7%"><!-- wp:post-excerpt {"moreText":"››","showMoreOnNewLine":false,"excerptLength":35} /--></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"top","width":"33.3%","style":{"spacing":{"padding":{"right":"0"}}}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="padding-right:0;flex-basis:33.3%"><!-- wp:post-date {"style":{"typography":{"textTransform":"uppercase"}}} /--></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns -->
|
||||
<!-- /wp:post-template -->
|
||||
|
||||
<!-- wp:query-pagination -->
|
||||
<!-- wp:query-pagination-previous {"label":"Prev"} /-->
|
||||
|
||||
<!-- wp:query-pagination-numbers /-->
|
||||
|
||||
<!-- wp:query-pagination-next {"label":"Next"} /-->
|
||||
<!-- /wp:query-pagination -->
|
||||
|
||||
<!-- wp:query-no-results {"align":"wide"} -->
|
||||
<!-- wp:heading {"level":1} -->
|
||||
<h1 class="wp-block-heading"><?php echo __('Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'trailblazer');?></h1>
|
||||
<!-- /wp:heading -->
|
||||
<!-- /wp:query-no-results --></div>
|
||||
<!-- /wp:query --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->
|
51
trailblazer/patterns/index.php
Normal file
51
trailblazer/patterns/index.php
Normal file
|
@ -0,0 +1,51 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: index
|
||||
* Slug: trailblazer/index
|
||||
* Categories: hidden
|
||||
* Inserter: no
|
||||
*/
|
||||
?>
|
||||
<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|70","bottom":"var:preset|spacing|70"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--70)"><!-- wp:query {"queryId":0,"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true},"align":"wide","layout":{"type":"default"}} -->
|
||||
<div class="wp-block-query alignwide"><!-- wp:post-template {"align":"wide","style":{"spacing":{"blockGap":"10vh"}},"layout":{"type":"default"}} -->
|
||||
<!-- wp:columns {"verticalAlignment":"top","align":"wide","style":{"spacing":[]}} -->
|
||||
<div class="wp-block-columns alignwide are-vertically-aligned-top"><!-- wp:column {"verticalAlignment":"top","width":"60%","style":{"spacing":{"padding":{"right":"0"}}}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="padding-right:0;flex-basis:60%"><!-- wp:post-title {"level":1,"isLink":true} /--></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"top","width":"5%","style":{"spacing":{"padding":{"right":"0"}}}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="padding-right:0;flex-basis:5%"></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"top","width":"35%"} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="flex-basis:35%"><!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|40"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
|
||||
<div class="wp-block-group"><!-- wp:post-excerpt {"moreText":"››","showMoreOnNewLine":false,"excerptLength":33} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|20"}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
|
||||
<div class="wp-block-group"><!-- wp:post-date {"format":"M j, Y"} /-->
|
||||
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontStyle":"normal","fontWeight":"700"}},"fontSize":"small","fontFamily":"libre-franklin"} -->
|
||||
<p class="has-libre-franklin-font-family has-small-font-size" style="font-style:normal;font-weight:700"><?php echo __('·', 'trailblazer');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:post-terms {"term":"category","className":"no-underline"} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns -->
|
||||
<!-- /wp:post-template -->
|
||||
|
||||
<!-- wp:query-pagination -->
|
||||
<!-- wp:query-pagination-previous {"label":"Prev"} /-->
|
||||
|
||||
<!-- wp:query-pagination-numbers /-->
|
||||
|
||||
<!-- wp:query-pagination-next {"label":"Next"} /-->
|
||||
<!-- /wp:query-pagination --></div>
|
||||
<!-- /wp:query --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->
|
60
trailblazer/patterns/post-list.php
Normal file
60
trailblazer/patterns/post-list.php
Normal file
|
@ -0,0 +1,60 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: Post list
|
||||
* Slug: trailblazer/post-list
|
||||
* Inserter: no
|
||||
*/
|
||||
|
||||
?>
|
||||
|
||||
<!-- wp:query {"query":{"perPage":"5","pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true}} -->
|
||||
<div class="wp-block-query"><!-- wp:post-template {"align":"wide"} -->
|
||||
<!-- wp:columns {"verticalAlignment":"top","align":"wide","style":{"spacing":[]}} -->
|
||||
<div class="wp-block-columns alignwide are-vertically-aligned-top"><!-- wp:column {"verticalAlignment":"top","width":"66.7%","style":{"spacing":{"padding":{"right":"0"}}}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="padding-right:0;flex-basis:66.7%"><!-- wp:post-title {"level":1,"isLink":true,"style":{"color":{"text":"#ffffff","link":"#ffffff"}}} /--></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"top","width":"33.3%","style":{"spacing":{"padding":{"top":"0px","right":"1rem","bottom":"0px","left":"0px"}}}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="padding-top:0px;padding-right:1rem;padding-bottom:0px;padding-left:0px;flex-basis:33.3%"><!-- wp:post-excerpt {"showMoreOnNewLine":false,"style":{"spacing":{"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}}} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","bottom":"0px"},"blockGap":"0px"}},"layout":{"type":"flex","orientation":"vertical"}} -->
|
||||
<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:spacer {"height":"1rem","style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}}} -->
|
||||
<div style="margin-top:0px;margin-bottom:0px;height:1rem" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"blockGap":"1rem"}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
|
||||
<div class="wp-block-group"><!-- wp:post-date /-->
|
||||
|
||||
<!-- wp:paragraph {"fontSize":"medium"} -->
|
||||
<p class="has-medium-font-size">·</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:post-terms {"term":"category","style":{"typography":{"fontStyle":"normal","fontWeight":"700"}},"fontSize":"medium"} /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:spacer {"height":"1rem","style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}}} -->
|
||||
<div style="margin-top:0px;margin-bottom:0px;height:1rem" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns -->
|
||||
|
||||
<!-- wp:spacer {"height":"6rem","style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}}} -->
|
||||
<div style="margin-top:0px;margin-bottom:0px;height:6rem" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer -->
|
||||
<!-- /wp:post-template -->
|
||||
|
||||
<!-- wp:query-pagination {"style":{"typography":{"fontStyle":"normal","fontWeight":"700","fontSize":"4.6rem","letterSpacing":"-2px"}},"fontFamily":"libre-franklin"} -->
|
||||
<!-- wp:query-pagination-previous /-->
|
||||
|
||||
<!-- wp:query-pagination-numbers /-->
|
||||
|
||||
<!-- wp:query-pagination-next /-->
|
||||
<!-- /wp:query-pagination -->
|
||||
|
||||
<!-- wp:query-no-results {"style":{"typography":{"fontStyle":"normal","fontWeight":"700","fontSize":"4.6rem","letterSpacing":"-2px"}},"fontFamily":"libre-franklin"} -->
|
||||
<!-- wp:paragraph -->
|
||||
<p><?php echo esc_html__( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'trailblazer' ); ?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
<!-- /wp:query-no-results --></div>
|
||||
<!-- /wp:query -->
|
17
trailblazer/patterns/post-meta.php
Normal file
17
trailblazer/patterns/post-meta.php
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: post-meta
|
||||
* Slug: trailblazer/post-meta
|
||||
* Categories: hidden
|
||||
* Inserter: no
|
||||
*/
|
||||
?>
|
||||
<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|30"}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
|
||||
<div class="wp-block-group"><!-- wp:post-date /-->
|
||||
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"0.8rem"}}} -->
|
||||
<p style="font-size:0.8rem"><?php echo __('·', 'trailblazer');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:post-terms {"term":"category","style":{"typography":{"textTransform":"uppercase"}}} /--></div>
|
||||
<!-- /wp:group -->
|
63
trailblazer/patterns/search.php
Normal file
63
trailblazer/patterns/search.php
Normal file
|
@ -0,0 +1,63 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: search
|
||||
* Slug: trailblazer/search
|
||||
* Categories: hidden
|
||||
* Inserter: no
|
||||
*/
|
||||
?>
|
||||
<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|70","bottom":"var:preset|spacing|70"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--70)"><!-- wp:group {"align":"wide","style":{"spacing":{"margin":{"bottom":"var:preset|spacing|70"}}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignwide" style="margin-bottom:var(--wp--preset--spacing--70)"><!-- wp:search {"showLabel":false,"placeholder":"SEARCH","width":50,"widthUnit":"%","buttonText":"Search","buttonPosition":"button-inside","buttonUseIcon":true} /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:query-title {"type":"archive","align":"wide"} /-->
|
||||
|
||||
<!-- wp:query {"queryId":0,"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true},"align":"wide","layout":{"type":"default"}} -->
|
||||
<div class="wp-block-query alignwide"><!-- wp:post-template {"align":"wide","style":{"spacing":{"blockGap":"10vh"}},"layout":{"type":"default"}} -->
|
||||
<!-- wp:columns {"verticalAlignment":"top","align":"wide","style":{"spacing":[]}} -->
|
||||
<div class="wp-block-columns alignwide are-vertically-aligned-top"><!-- wp:column {"verticalAlignment":"top","width":"60%","style":{"spacing":{"padding":{"right":"0"}}}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="padding-right:0;flex-basis:60%"><!-- wp:post-title {"level":1,"isLink":true} /--></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"top","width":"5%","style":{"spacing":{"padding":{"right":"0"}}}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="padding-right:0;flex-basis:5%"></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"top","width":"35%"} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="flex-basis:35%"><!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|40"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
|
||||
<div class="wp-block-group"><!-- wp:post-excerpt {"moreText":"››","showMoreOnNewLine":false,"excerptLength":33} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|20"}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
|
||||
<div class="wp-block-group"><!-- wp:post-date {"format":"M j, Y"} /-->
|
||||
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontStyle":"normal","fontWeight":"700"}},"fontSize":"small","fontFamily":"libre-franklin"} -->
|
||||
<p class="has-libre-franklin-font-family has-small-font-size" style="font-style:normal;font-weight:700"><?php echo __('·', 'trailblazer');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:post-terms {"term":"category","className":"no-underline"} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns -->
|
||||
<!-- /wp:post-template -->
|
||||
|
||||
<!-- wp:query-pagination -->
|
||||
<!-- wp:query-pagination-previous {"label":"Prev"} /-->
|
||||
|
||||
<!-- wp:query-pagination-numbers /-->
|
||||
|
||||
<!-- wp:query-pagination-next {"label":"Next"} /-->
|
||||
<!-- /wp:query-pagination -->
|
||||
|
||||
<!-- wp:query-no-results -->
|
||||
<!-- wp:heading {"level":1} -->
|
||||
<h1 class="wp-block-heading"><?php echo __('Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'trailblazer');?></h1>
|
||||
<!-- /wp:heading -->
|
||||
<!-- /wp:query-no-results --></div>
|
||||
<!-- /wp:query --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->
|
25
trailblazer/patterns/sidebar.php
Normal file
25
trailblazer/patterns/sidebar.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: sidebar
|
||||
* Slug: trailblazer/sidebar
|
||||
* Categories: hidden
|
||||
* Inserter: no
|
||||
*/
|
||||
?>
|
||||
<!-- wp:group {"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group"><!-- wp:heading {"level":3} -->
|
||||
<h3 class="wp-block-heading"><?php echo __('Get updates', 'trailblazer');?></h3>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:group {"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
|
||||
<div class="wp-block-group"><!-- wp:paragraph -->
|
||||
<p><?php echo __('From art exploration to the latest archeological findings, all here in our weekly newsletter.', 'trailblazer');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:buttons -->
|
||||
<div class="wp-block-buttons"><!-- wp:button -->
|
||||
<div class="wp-block-button"><a class="wp-block-button__link wp-element-button"><?php echo __('Subscribe', 'trailblazer');?></a></div>
|
||||
<!-- /wp:button --></div>
|
||||
<!-- /wp:buttons --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
49
trailblazer/readme.txt
Normal file
49
trailblazer/readme.txt
Normal file
|
@ -0,0 +1,49 @@
|
|||
== Trailblazer ==
|
||||
|
||||
Contributors: Automattic
|
||||
Requires at least: 6.0
|
||||
Tested up to: 6.5
|
||||
Requires PHP: 5.7
|
||||
License: GPLv2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
|
||||
|
||||
== Description ==
|
||||
|
||||
A theme in homage to George Lois, visionary American Art Director, and author.
|
||||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 =
|
||||
* Initial release
|
||||
|
||||
|
||||
== Copyright ==
|
||||
|
||||
Trailblazer WordPress Theme, (C) 2024 Automattic
|
||||
Trailblazer 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.
|
||||
|
||||
|
||||
Trailblazer is based on Maverick (https://themeshaper.com/maverick/), (C) Automattic, [GPLv2 or later](http://www.gnu.org/licenses/gpl-2.0.html)
|
||||
|
||||
|
||||
== Fonts ==
|
||||
|
||||
Libre Franklin
|
||||
Copyright 2020 The LibreFranklin Project Authors (https://github.com/impallari/Libre-Franklin)
|
||||
Source: http://www.impallari.com/
|
||||
License: 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
|
||||
|
||||
C059
|
||||
(URW)++,Copyright 2014 by (URW)++ Design & Development
|
||||
|
BIN
trailblazer/screenshot.png
Normal file
BIN
trailblazer/screenshot.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 215 KiB |
63
trailblazer/style.css
Normal file
63
trailblazer/style.css
Normal file
|
@ -0,0 +1,63 @@
|
|||
/*
|
||||
Theme Name: Trailblazer
|
||||
Theme URI: https://themeshaper.com/trailblazer
|
||||
Author: Automattic
|
||||
Author URI: https://automattic.com
|
||||
Description: A theme in homage to George Lois, visionary American Art Director, and author.
|
||||
Requires at least: 6.0
|
||||
Tested up to: 6.5
|
||||
Requires PHP: 5.7
|
||||
Version: 1.0
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Text Domain: trailblazer
|
||||
Tags: blog, one-column, two-columns, right-sidebar, block-patterns, block-styles, custom-colors, custom-header, custom-logo, custom-menu, editor-style, flexible-header, full-site-editing, full-width-template, microformats, post-formats, rtl-language-support, style-variations, template-editing, theme-options, threaded-comments, translation-ready
|
||||
|
||||
/*
|
||||
* Control the hover stylings of outline block style.
|
||||
* Unnecessary once block styles are configurable via theme.json
|
||||
* https://github.com/WordPress/gutenberg/issues/42794
|
||||
*/
|
||||
|
||||
/*
|
||||
* 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--foreground);
|
||||
border-color: var(--wp--preset--color--secondary);
|
||||
}
|
||||
|
||||
/**
|
||||
* Currently table styles are only available with 'wp-block-styles'
|
||||
* theme support (block css) thus the following needs to be included
|
||||
* since 'wp-block-styles' aren't used for this theme.
|
||||
* https://github.com/WordPress/gutenberg/issues/45065
|
||||
*/
|
||||
.wp-block-table thead {
|
||||
border-bottom: 3px solid;
|
||||
}
|
||||
.wp-block-table tfoot {
|
||||
border-top: 3px solid;
|
||||
}
|
||||
.wp-block-table td,
|
||||
.wp-block-table th {
|
||||
padding: var(--wp--preset--spacing--30);
|
||||
border: 1px solid;
|
||||
word-break: normal;
|
||||
}
|
||||
.wp-block-table figcaption {
|
||||
font-size: var(--wp--preset--font-size--small);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/*
|
||||
* Link styles
|
||||
* https://github.com/WordPress/gutenberg/issues/42319
|
||||
*/
|
||||
a {
|
||||
text-decoration-thickness: .0625em !important;
|
||||
text-underline-offset: .15em;
|
||||
}
|
87
trailblazer/styles/upended.json
Normal file
87
trailblazer/styles/upended.json
Normal file
|
@ -0,0 +1,87 @@
|
|||
{
|
||||
"settings": {
|
||||
"color": {
|
||||
"palette": [
|
||||
{
|
||||
"color": "#131020",
|
||||
"name": "Primary",
|
||||
"slug": "primary"
|
||||
},
|
||||
{
|
||||
"color": "#f4f4f3",
|
||||
"name": "Secondary",
|
||||
"slug": "secondary"
|
||||
},
|
||||
{
|
||||
"color": "#131020",
|
||||
"name": "Foreground",
|
||||
"slug": "foreground"
|
||||
},
|
||||
{
|
||||
"color": "#f4f4f3",
|
||||
"name": "Background",
|
||||
"slug": "background"
|
||||
},
|
||||
{
|
||||
"color": "#808080",
|
||||
"name": "Tertiary",
|
||||
"slug": "tertiary"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"styles": {
|
||||
"blocks": {
|
||||
"core/query-pagination": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--new-century-schoolbook)",
|
||||
"fontSize": "var(--wp--preset--font-size--x-large)",
|
||||
"lineHeight": "1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"elements": {
|
||||
"h1": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--new-century-schoolbook)"
|
||||
}
|
||||
},
|
||||
"h2": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--new-century-schoolbook)"
|
||||
}
|
||||
},
|
||||
"h3": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--new-century-schoolbook)"
|
||||
}
|
||||
},
|
||||
"h4": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--new-century-schoolbook)"
|
||||
}
|
||||
},
|
||||
"h5": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--new-century-schoolbook)"
|
||||
}
|
||||
},
|
||||
"h6": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--new-century-schoolbook)"
|
||||
}
|
||||
},
|
||||
"heading": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--new-century-schoolbook)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--libre-franklin)"
|
||||
}
|
||||
},
|
||||
"title": "Upended",
|
||||
"version": 3,
|
||||
"$schema": "https://schemas.wp.org/trunk/theme.json"
|
||||
}
|
1
trailblazer/templates/404.html
Normal file
1
trailblazer/templates/404.html
Normal file
|
@ -0,0 +1 @@
|
|||
<!-- wp:pattern {"slug":"trailblazer/404"} /-->
|
1
trailblazer/templates/archive.html
Normal file
1
trailblazer/templates/archive.html
Normal file
|
@ -0,0 +1 @@
|
|||
<!-- wp:pattern {"slug":"trailblazer/archive"} /-->
|
1
trailblazer/templates/front-page.html
Normal file
1
trailblazer/templates/front-page.html
Normal file
|
@ -0,0 +1 @@
|
|||
<!-- wp:pattern {"slug":"trailblazer/front-page"} /-->
|
1
trailblazer/templates/home.html
Normal file
1
trailblazer/templates/home.html
Normal file
|
@ -0,0 +1 @@
|
|||
<!-- wp:pattern {"slug":"trailblazer/home"} /-->
|
1
trailblazer/templates/index.html
Normal file
1
trailblazer/templates/index.html
Normal file
|
@ -0,0 +1 @@
|
|||
<!-- wp:pattern {"slug":"trailblazer/index"} /-->
|
9
trailblazer/templates/page.html
Normal file
9
trailblazer/templates/page.html
Normal file
|
@ -0,0 +1,9 @@
|
|||
<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"5vh","bottom":"5vh"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-top:5vh;padding-bottom:5vh"><!-- wp:group {"tagName":"main","lock":{"move":false,"remove":false},"align":"wide"} -->
|
||||
<main class="wp-block-group alignwide"><!-- wp:post-content {"lock":{"move":false,"remove":false},"align":"wide","layout":{"type":"constrained","justifyContent":"left"}} /--></main>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->
|
1
trailblazer/templates/search.html
Normal file
1
trailblazer/templates/search.html
Normal file
|
@ -0,0 +1 @@
|
|||
<!-- wp:pattern {"slug":"trailblazer/search"} /-->
|
65
trailblazer/templates/single.html
Normal file
65
trailblazer/templates/single.html
Normal file
|
@ -0,0 +1,65 @@
|
|||
<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"5vh","bottom":"5vh"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-top:5vh;padding-bottom:5vh"><!-- wp:group {"tagName":"main","lock":{"move":false,"remove":false},"align":"wide"} -->
|
||||
<main class="wp-block-group alignwide"><!-- wp:columns {"style":{"spacing":{"blockGap":{"top":"var:preset|spacing|70","left":"5%"}}}} -->
|
||||
<div class="wp-block-columns"><!-- wp:column {"width":"66.66%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:66.66%"><!-- wp:group {"align":"wide","style":{"spacing":{"margin":{"bottom":"var:preset|spacing|70"}}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
|
||||
<div class="wp-block-group alignwide" style="margin-bottom:var(--wp--preset--spacing--70)"><!-- wp:post-title {"level":1,"align":"wide"} /-->
|
||||
|
||||
<!-- wp:template-part {"slug":"post-meta"} /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:post-content {"lock":{"move":false,"remove":false},"align":"wide","layout":{"type":"constrained","justifyContent":"left"}} /-->
|
||||
|
||||
<!-- wp:group {"align":"wide","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignwide"><!-- wp:spacer {"height":"4rem"} -->
|
||||
<div style="height:4rem" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer -->
|
||||
|
||||
<!-- 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 {"style":{"spacing":{"blockGap":"0.5em"}},"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 -->
|
||||
|
||||
<!-- 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 --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"33.33%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:33.33%"><!-- wp:template-part {"slug":"sidebar"} /--></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></main>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->
|
661
trailblazer/theme.json
Normal file
661
trailblazer/theme.json
Normal file
|
@ -0,0 +1,661 @@
|
|||
{
|
||||
"settings": {
|
||||
"appearanceTools": true,
|
||||
"color": {
|
||||
"custom": true,
|
||||
"customGradient": true,
|
||||
"palette": [
|
||||
{
|
||||
"color": "#f4f4f3",
|
||||
"name": "Primary",
|
||||
"slug": "primary"
|
||||
},
|
||||
{
|
||||
"color": "#131020",
|
||||
"name": "Secondary",
|
||||
"slug": "secondary"
|
||||
},
|
||||
{
|
||||
"color": "#f4f4f3",
|
||||
"name": "Foreground",
|
||||
"slug": "foreground"
|
||||
},
|
||||
{
|
||||
"color": "#131020",
|
||||
"name": "Background",
|
||||
"slug": "background"
|
||||
},
|
||||
{
|
||||
"color": "#808080",
|
||||
"name": "Tertiary",
|
||||
"slug": "tertiary"
|
||||
}
|
||||
]
|
||||
},
|
||||
"layout": {
|
||||
"contentSize": "900px",
|
||||
"wideSize": "1200px"
|
||||
},
|
||||
"spacing": {
|
||||
"customSpacingSize": true,
|
||||
"spacingScale": {
|
||||
"theme": {
|
||||
"steps": 0
|
||||
}
|
||||
},
|
||||
"spacingSizes": [
|
||||
{
|
||||
"name": "2X-Small",
|
||||
"size": "0.5rem",
|
||||
"slug": "20"
|
||||
},
|
||||
{
|
||||
"name": "X-Small",
|
||||
"size": "clamp(0.5rem, 1vw, 1rem)",
|
||||
"slug": "30"
|
||||
},
|
||||
{
|
||||
"name": "Small",
|
||||
"size": "clamp(0.75rem, 1.5vw, 1.5rem)",
|
||||
"slug": "40"
|
||||
},
|
||||
{
|
||||
"name": "Medium",
|
||||
"size": "clamp(1rem, 2vw, 2rem)",
|
||||
"slug": "50"
|
||||
},
|
||||
{
|
||||
"name": "Large",
|
||||
"size": "clamp(1.5rem, 3vw, 3rem)",
|
||||
"slug": "60"
|
||||
},
|
||||
{
|
||||
"name": "X-Large",
|
||||
"size": "clamp(2rem, 4vw, 4rem)",
|
||||
"slug": "70"
|
||||
},
|
||||
{
|
||||
"name": "2X-Large",
|
||||
"size": "clamp(3rem, 6vw, 6rem)",
|
||||
"slug": "80"
|
||||
}
|
||||
],
|
||||
"units": [
|
||||
"%",
|
||||
"px",
|
||||
"em",
|
||||
"rem",
|
||||
"vh",
|
||||
"vw"
|
||||
]
|
||||
},
|
||||
"typography": {
|
||||
"customFontSize": true,
|
||||
"defaultFontSizes": false,
|
||||
"fluid": true,
|
||||
"fontFamilies": [
|
||||
{
|
||||
"fontFace": [
|
||||
{
|
||||
"fontFamily": "Libre Franklin",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "700",
|
||||
"src": [
|
||||
"file:./assets/fonts/libre-franklin_700.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Libre Franklin",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "400",
|
||||
"src": [
|
||||
"file:./assets/fonts/libre-franklin_regular.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Libre Franklin",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "400",
|
||||
"src": [
|
||||
"file:./assets/fonts/libre-franklin_italic.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Libre Franklin",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "700",
|
||||
"src": [
|
||||
"file:./assets/fonts/libre-franklin_700italic.ttf"
|
||||
]
|
||||
}
|
||||
],
|
||||
"fontFamily": "Libre Franklin",
|
||||
"slug": "libre-franklin"
|
||||
},
|
||||
{
|
||||
"fontFace": [
|
||||
{
|
||||
"fontFamily": "New Century Schoolbook",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "400",
|
||||
"src": [
|
||||
"file:./assets/fonts/new-century-schoolbook_normal_400.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "New Century Schoolbook",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "400",
|
||||
"src": [
|
||||
"file:./assets/fonts/new-century-schoolbook_italic_400.ttf"
|
||||
]
|
||||
}
|
||||
],
|
||||
"fontFamily": "New Century Schoolbook",
|
||||
"slug": "new-century-schoolbook"
|
||||
}
|
||||
],
|
||||
"fontSizes": [
|
||||
{
|
||||
"fluid": {
|
||||
"max": "1rem",
|
||||
"min": "0.75rem"
|
||||
},
|
||||
"name": "Small",
|
||||
"size": "0.75rem",
|
||||
"slug": "small"
|
||||
},
|
||||
{
|
||||
"fluid": {
|
||||
"max": "1.33rem",
|
||||
"min": "1rem"
|
||||
},
|
||||
"name": "Medium",
|
||||
"size": "1rem",
|
||||
"slug": "medium"
|
||||
},
|
||||
{
|
||||
"fluid": {
|
||||
"max": "1.414rem",
|
||||
"min": "1.25rem"
|
||||
},
|
||||
"name": "Large",
|
||||
"size": "1.414rem",
|
||||
"slug": "large"
|
||||
},
|
||||
{
|
||||
"fluid": {
|
||||
"max": "3.998rem",
|
||||
"min": "2.5rem"
|
||||
},
|
||||
"name": "Extra Large",
|
||||
"size": "3.998rem",
|
||||
"slug": "x-large"
|
||||
}
|
||||
]
|
||||
},
|
||||
"useRootPaddingAwareAlignments": true
|
||||
},
|
||||
"styles": {
|
||||
"blocks": {
|
||||
"core/avatar": {
|
||||
"border": {
|
||||
"radius": "5px"
|
||||
},
|
||||
"filter": {
|
||||
"duotone": "var(--wp--preset--duotone--grayscale)"
|
||||
}
|
||||
},
|
||||
"core/button": {
|
||||
"color": {
|
||||
"background": "var(--wp--preset--color--secondary)",
|
||||
"text": "var(--wp--preset--color--primary)"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--primary)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"spacing": {
|
||||
"padding": {
|
||||
"bottom": "var(--wp--preset--spacing--30)",
|
||||
"left": "0",
|
||||
"right": "0",
|
||||
"top": "var(--wp--preset--spacing--30)"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--libre-franklin)",
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"letterSpacing": "0.06rem",
|
||||
"textDecoration": "underline",
|
||||
"textTransform": "uppercase"
|
||||
}
|
||||
},
|
||||
"core/code": {
|
||||
"border": {
|
||||
"color": "var(--wp--preset--color--foreground)",
|
||||
"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/columns": {
|
||||
"spacing": {
|
||||
"blockGap": {
|
||||
"left": "var(--wp--preset--spacing--20)",
|
||||
"top": "var(--wp--preset--spacing--30)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/comment-author-name": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--libre-franklin)",
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "700"
|
||||
}
|
||||
},
|
||||
"core/comment-date": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--libre-franklin)",
|
||||
"fontSize": "var(--wp--preset--font-size--small)"
|
||||
}
|
||||
},
|
||||
"core/comment-edit-link": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--libre-franklin)",
|
||||
"fontSize": "var(--wp--preset--font-size--small)"
|
||||
}
|
||||
},
|
||||
"core/comment-reply-link": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--libre-franklin)",
|
||||
"fontSize": "var(--wp--preset--font-size--small)"
|
||||
}
|
||||
},
|
||||
"core/comments-pagination": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--libre-franklin)"
|
||||
}
|
||||
},
|
||||
"core/gallery": {
|
||||
"spacing": {
|
||||
"margin": {
|
||||
"bottom": "var(--wp--preset--spacing--50)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/list": {
|
||||
"spacing": {
|
||||
"padding": {
|
||||
"left": "var(--wp--preset--spacing--70)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/navigation": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
"spacing": {
|
||||
"blockGap": "var(--wp--preset--spacing--30)"
|
||||
},
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--libre-franklin)",
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "400",
|
||||
"letterSpacing": "0.03rem",
|
||||
"textTransform": "uppercase"
|
||||
}
|
||||
},
|
||||
"core/post-content": {
|
||||
"spacing": {
|
||||
"blockGap": "var(--wp--preset--spacing--40)"
|
||||
}
|
||||
},
|
||||
"core/post-date": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--foreground)"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--secondary)"
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--libre-franklin)",
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "700",
|
||||
"letterSpacing": "0rem",
|
||||
"textTransform": "uppercase"
|
||||
}
|
||||
},
|
||||
"core/post-terms": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--libre-franklin)",
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "700",
|
||||
"letterSpacing": "0rem",
|
||||
"textDecoration": "none"
|
||||
}
|
||||
},
|
||||
"core/post-title": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
"spacing": {
|
||||
"margin": {
|
||||
"bottom": "0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/pullquote": {
|
||||
"border": {
|
||||
"color": "var(--wp--preset--color--foreground)",
|
||||
"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/query-pagination": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--libre-franklin)",
|
||||
"fontSize": "4.6rem",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "700",
|
||||
"lineHeight": "1.1"
|
||||
}
|
||||
},
|
||||
"core/query-title": {
|
||||
"spacing": {
|
||||
"margin": {
|
||||
"bottom": "5vh"
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/quote": {
|
||||
"border": {
|
||||
"color": "var(--wp--preset--color--primary)",
|
||||
"style": "solid",
|
||||
"width": "0 0 0 1px"
|
||||
},
|
||||
"spacing": {
|
||||
"padding": {
|
||||
"left": "var(--wp--preset--spacing--50)"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontStyle": "normal"
|
||||
}
|
||||
},
|
||||
"core/search": {
|
||||
"border": {
|
||||
"bottom": {
|
||||
"style": "none",
|
||||
"width": "0px"
|
||||
},
|
||||
"color": null,
|
||||
"left": {
|
||||
"style": "none",
|
||||
"width": "0px"
|
||||
},
|
||||
"radius": "2px",
|
||||
"right": {
|
||||
"style": "none",
|
||||
"width": "0px"
|
||||
},
|
||||
"style": null,
|
||||
"top": {
|
||||
"style": "none",
|
||||
"width": "0px"
|
||||
},
|
||||
"width": null
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"lineHeight": "1.6"
|
||||
}
|
||||
},
|
||||
"core/separator": {
|
||||
"border": {
|
||||
"color": "currentColor",
|
||||
"style": "solid",
|
||||
"width": "0 0 1px 0"
|
||||
},
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--foreground)"
|
||||
}
|
||||
},
|
||||
"core/site-tagline": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--libre-franklin)",
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "400"
|
||||
}
|
||||
},
|
||||
"core/site-title": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--libre-franklin)",
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "700",
|
||||
"letterSpacing": "0.03rem",
|
||||
"textTransform": "uppercase"
|
||||
}
|
||||
}
|
||||
},
|
||||
"color": {
|
||||
"background": "var(--wp--preset--color--secondary)",
|
||||
"text": "var(--wp--preset--color--primary)"
|
||||
},
|
||||
"css": ".no-underline a{text-decoration: none;}",
|
||||
"elements": {
|
||||
"button": {
|
||||
":active": {
|
||||
"color": {
|
||||
"background": "var(--wp--preset--color--primary)",
|
||||
"text": "var(--wp--preset--color--background)"
|
||||
}
|
||||
},
|
||||
":focus": {
|
||||
"color": {
|
||||
"background": "var(--wp--preset--color--primary)",
|
||||
"text": "var(--wp--preset--color--background)"
|
||||
}
|
||||
},
|
||||
":hover": {
|
||||
"color": {
|
||||
"background": "var(--wp--preset--color--primary)",
|
||||
"text": "var(--wp--preset--color--background)"
|
||||
}
|
||||
},
|
||||
"border": {
|
||||
"radius": "0.25rem"
|
||||
},
|
||||
"color": {
|
||||
"background": "var(--wp--preset--color--primary)",
|
||||
"text": "var(--wp--preset--color--secondary)"
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "clamp(0.825rem, 0.825rem + ((1vw - 0.48rem) * 0.458), 1.0625rem)",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "700"
|
||||
}
|
||||
},
|
||||
"caption": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--primary)"
|
||||
}
|
||||
},
|
||||
"h1": {
|
||||
"typography": {
|
||||
"fontFamily": "Libre Franklin",
|
||||
"fontSize": "var(--wp--preset--font-size--x-large)",
|
||||
"letterSpacing": "-0.03rem",
|
||||
"lineHeight": "1"
|
||||
}
|
||||
},
|
||||
"h2": {
|
||||
"typography": {
|
||||
"fontFamily": "Libre Franklin",
|
||||
"fontSize": "var(--wp--preset--font-size--large)",
|
||||
"fontWeight": "700",
|
||||
"letterSpacing": "-0.03rem"
|
||||
}
|
||||
},
|
||||
"h3": {
|
||||
"typography": {
|
||||
"fontFamily": "Libre Franklin",
|
||||
"fontSize": "var(--wp--preset--font-size--large)",
|
||||
"fontWeight": "700",
|
||||
"letterSpacing": "-0.02rem",
|
||||
"textTransform": "none"
|
||||
}
|
||||
},
|
||||
"h4": {
|
||||
"typography": {
|
||||
"fontFamily": "Libre Franklin",
|
||||
"fontSize": "var(--wp--preset--font-size--medium)",
|
||||
"fontWeight": "700",
|
||||
"letterSpacing": "-0.02rem"
|
||||
}
|
||||
},
|
||||
"h5": {
|
||||
"typography": {
|
||||
"fontFamily": "Libre Franklin",
|
||||
"fontSize": "var(--wp--preset--font-size--medium)",
|
||||
"fontWeight": "700"
|
||||
}
|
||||
},
|
||||
"h6": {
|
||||
"typography": {
|
||||
"fontFamily": "Libre Franklin",
|
||||
"fontSize": "var(--wp--preset--font-size--medium)",
|
||||
"fontWeight": "700"
|
||||
}
|
||||
},
|
||||
"heading": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--foreground)"
|
||||
},
|
||||
"typography": {
|
||||
"fontFamily": "Libre Franklin",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "700"
|
||||
}
|
||||
},
|
||||
"link": {
|
||||
":hover": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--primary)"
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
},
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--primary)"
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
}
|
||||
},
|
||||
"spacing": {
|
||||
"blockGap": "var(--wp--preset--spacing--40)",
|
||||
"padding": {
|
||||
"bottom": "0px",
|
||||
"left": "var(--wp--preset--spacing--50)",
|
||||
"right": "var(--wp--preset--spacing--50)",
|
||||
"top": "0px"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--new-century-schoolbook)",
|
||||
"fontSize": "var(--wp--preset--font-size--medium)",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "400",
|
||||
"lineHeight": 1.4
|
||||
}
|
||||
},
|
||||
"templateParts": [
|
||||
{
|
||||
"area": "header",
|
||||
"name": "header"
|
||||
},
|
||||
{
|
||||
"area": "footer",
|
||||
"name": "footer"
|
||||
}
|
||||
],
|
||||
"version": 3,
|
||||
"$schema": "https://schemas.wp.org/trunk/theme.json"
|
||||
}
|
Loading…
Reference in a new issue