Fotograma: Add theme (#7128)
* Fotograma: Add theme * Bump version on stylesheet * Remove theme slug from templates * Avoid using template parts from patterns --------- Co-authored-by: Vicente Canales <vicente.canales@automattic.com>
This commit is contained in:
parent
83ed843ada
commit
8eac9725bd
34 changed files with 2589 additions and 6010 deletions
BIN
fotograma/assets/fonts/inter_italic_100 900.woff2
Normal file
BIN
fotograma/assets/fonts/inter_italic_100 900.woff2
Normal file
Binary file not shown.
BIN
fotograma/assets/fonts/inter_normal_100 900.woff2
Normal file
BIN
fotograma/assets/fonts/inter_normal_100 900.woff2
Normal file
Binary file not shown.
Binary file not shown.
After Width: | Height: | Size: 193 KiB |
Binary file not shown.
After Width: | Height: | Size: 165 KiB |
BIN
fotograma/assets/images/documerica-4fWUuPi4h5w-unsplash.jpg
Normal file
BIN
fotograma/assets/images/documerica-4fWUuPi4h5w-unsplash.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 132 KiB |
BIN
fotograma/assets/images/documerica-QhH_dDe5plY-unsplash.jpg
Normal file
BIN
fotograma/assets/images/documerica-QhH_dDe5plY-unsplash.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 149 KiB |
BIN
fotograma/assets/images/documerica-vOxIhoEXPvc-unsplash.jpg
Normal file
BIN
fotograma/assets/images/documerica-vOxIhoEXPvc-unsplash.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 120 KiB |
60
fotograma/functions.php
Normal file
60
fotograma/functions.php
Normal file
|
@ -0,0 +1,60 @@
|
|||
<?php
|
||||
/**
|
||||
* fotograma functions and definitions
|
||||
*
|
||||
* @link https://developer.wordpress.org/themes/basics/theme-functions/
|
||||
*
|
||||
* @package fotograma
|
||||
* @since fotograma 1.0
|
||||
*/
|
||||
|
||||
|
||||
if ( ! function_exists( 'fotograma_support' ) ) :
|
||||
|
||||
/**
|
||||
* Sets up theme defaults and registers support for various WordPress feafotogramares.
|
||||
*
|
||||
* @since fotograma 1.0
|
||||
*
|
||||
* @refotogramarn void
|
||||
*/
|
||||
function fotograma_support() {
|
||||
|
||||
// Enqueue editor styles.
|
||||
add_editor_style( 'style.css' );
|
||||
|
||||
// Make theme available for translation.
|
||||
load_theme_textdomain( 'fotograma' );
|
||||
}
|
||||
|
||||
endif;
|
||||
|
||||
add_action( 'after_sefotogramap_theme', 'fotograma_support' );
|
||||
|
||||
if ( ! function_exists( 'fotograma_styles' ) ) :
|
||||
|
||||
/**
|
||||
* Enqueue styles.
|
||||
*
|
||||
* @since fotograma 1.0
|
||||
*
|
||||
* @refotogramarn void
|
||||
*/
|
||||
function fotograma_styles() {
|
||||
|
||||
// Register theme stylesheet.
|
||||
wp_register_style(
|
||||
'fotograma-style',
|
||||
get_stylesheet_directory_uri() . '/style.css',
|
||||
array(),
|
||||
wp_get_theme()->get( 'Version' )
|
||||
);
|
||||
|
||||
// Enqueue theme stylesheet.
|
||||
wp_enqueue_style( 'fotograma-style' );
|
||||
|
||||
}
|
||||
|
||||
endif;
|
||||
|
||||
add_action( 'wp_enqueue_scripts', 'fotograma_styles' );
|
47
fotograma/parts/comments.html
Normal file
47
fotograma/parts/comments.html
Normal file
|
@ -0,0 +1,47 @@
|
|||
<!-- wp:comments {"className":"wp-block-comments-query-loop"} -->
|
||||
<div class="wp-block-comments wp-block-comments-query-loop">
|
||||
<!-- wp:group {"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group">
|
||||
<!-- wp:comments-title {"level":3} /-->
|
||||
|
||||
<!-- wp:comment-template {"style":{"spacing":{"padding":{"left":"0px"}}}} -->
|
||||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"0","bottom":"var:preset|spacing|70"}}}} -->
|
||||
<div class="wp-block-group" style="margin-top:0;margin-bottom:var(--wp--preset--spacing--70)">
|
||||
<!-- 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 {"fontSize":"small"} /-->
|
||||
|
||||
<!-- wp:comment-reply-link /-->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
<!-- /wp:comment-template -->
|
||||
|
||||
<!-- wp:comments-pagination {"paginationArrow":"arrow","layout":{"type":"flex","justifyContent":"space-between"}} -->
|
||||
<!-- wp:comments-pagination-previous /-->
|
||||
|
||||
<!-- wp:comments-pagination-next /-->
|
||||
<!-- /wp:comments-pagination -->
|
||||
|
||||
<!-- wp:post-comments-form /-->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
</div>
|
||||
<!-- /wp:comments -->
|
1
fotograma/parts/footer-home.html
Normal file
1
fotograma/parts/footer-home.html
Normal file
|
@ -0,0 +1 @@
|
|||
<!-- wp:pattern {"slug":"fotograma/footer-home"} /-->
|
1
fotograma/parts/footer.html
Normal file
1
fotograma/parts/footer.html
Normal file
|
@ -0,0 +1 @@
|
|||
<!-- wp:pattern {"slug":"fotograma/footer"} /-->
|
5
fotograma/parts/header.html
Normal file
5
fotograma/parts/header.html
Normal file
|
@ -0,0 +1,5 @@
|
|||
<!-- wp:group {"style":{"spacing":{"blockGap":"0px"}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group">
|
||||
<!-- wp:site-title {"style":{"spacing":{"margin":{"top":"0px","bottom":"0px","right":"0px","left":"0px"}}}} /-->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
14
fotograma/patterns/404.php
Normal file
14
fotograma/patterns/404.php
Normal file
|
@ -0,0 +1,14 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: A 404 page
|
||||
* Slug: fotograma/404
|
||||
* Inserter: no
|
||||
*/
|
||||
?>
|
||||
<!-- wp:heading {"level":1,"fontSize":"large","anchor":"oops-that-page-can-t-be-found"} -->
|
||||
<h1 class="wp-block-heading has-large-font-size" id="oops-that-page-can-t-be-found"><?php echo esc_html__( 'Oops! That page can’t be found.', 'fotograma' ); ?></h1>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><?php echo esc_html__( 'It looks like nothing was found at this location. Maybe try a search?', 'fotograma' ); ?></p>
|
||||
<!-- /wp:paragraph -->
|
17
fotograma/patterns/footer-home.php
Normal file
17
fotograma/patterns/footer-home.php
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: Default footer
|
||||
* Slug: fotograma/footer-home
|
||||
* Inserter: no
|
||||
*/
|
||||
?>
|
||||
|
||||
<!-- wp:paragraph {"fontSize":"x-small"} -->
|
||||
<p class="has-x-small-font-size"><?php
|
||||
/* Translators: WordPress link. */
|
||||
$wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'fotograma' ) ) . '" rel="nofollow">WordPress</a>';
|
||||
echo sprintf(
|
||||
esc_html__( 'Designed with %1$s', 'fotograma' ),
|
||||
$wordpress_link
|
||||
);?></p>
|
||||
<!-- /wp:paragraph -->
|
22
fotograma/patterns/footer.php
Normal file
22
fotograma/patterns/footer.php
Normal file
|
@ -0,0 +1,22 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: Default footer
|
||||
* Slug: fotograma/footer
|
||||
* Categories: featured, footer
|
||||
* Block Types: core/template-part/footer
|
||||
*/
|
||||
?>
|
||||
|
||||
<!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"var:preset|spacing|30","padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50","right":"var:preset|spacing|50","left":"var:preset|spacing|50"}},"elements":{"link":{"color":{"text":"var:preset|color|contrast"},":hover":{"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:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)">
|
||||
<!-- wp:paragraph {"fontSize":"x-small"} -->
|
||||
<p class="has-x-small-font-size"><?php
|
||||
/* Translators: WordPress link. */
|
||||
$wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'fotograma' ) ) . '" rel="nofollow">WordPress</a>';
|
||||
echo sprintf(
|
||||
esc_html__( 'Designed with %1$s', 'fotograma' ),
|
||||
$wordpress_link
|
||||
);?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
204
fotograma/patterns/front-page.php
Normal file
204
fotograma/patterns/front-page.php
Normal file
|
@ -0,0 +1,204 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: front-page
|
||||
* Slug: fotograma/front-page
|
||||
* Categories: featured
|
||||
*/
|
||||
?>
|
||||
<!-- wp:pattern {"slug":"fotograma/stack-photo"} /-->
|
||||
|
||||
<!-- wp:group {"style":{"dimensions":{"minHeight":"100vh"},"spacing":{"padding":{"top":"var:preset|spacing|50","right":"var:preset|spacing|50","bottom":"var:preset|spacing|50","left":"var:preset|spacing|50"}},"position":{"type":"sticky","top":"0px"}},"backgroundColor":"base","layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
|
||||
<div class="wp-block-group has-base-background-color has-background" style="min-height:100vh;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)">
|
||||
<!-- wp:columns {"style":{"spacing":{"blockGap":{"top":"var:preset|spacing|40","left":"var:preset|spacing|50"},"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}},"border":{"top":{"color":"var:preset|color|contrast","width":"1px"},"right":[],"bottom":{"color":"var:preset|color|contrast","width":"1px"},"left":[]}}} -->
|
||||
<div class="wp-block-columns" style="border-top-color:var(--wp--preset--color--contrast);border-top-width:1px;border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:1px;padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)">
|
||||
<!-- wp:column {"width":"25%","style":{"spacing":{"blockGap":"0"}}} -->
|
||||
<div class="wp-block-column" style="flex-basis:25%">
|
||||
<!-- wp:pattern {"slug":"fotograma/header"} /-->
|
||||
</div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"25%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:25%"></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"25%","style":{"spacing":{"blockGap":"0px"}}} -->
|
||||
<div class="wp-block-column" style="flex-basis:25%">
|
||||
<!-- wp:paragraph {"fontSize":"small"} -->
|
||||
<p class="has-small-font-size"><?php echo esc_html__( 'Jun. 1972: Teenager, Second Ward, El Paso', 'fotograma' ); ?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"fontSize":"small"} -->
|
||||
<p class="has-small-font-size"><?php echo esc_html__( 'Photographer: Danny Lyon', 'fotograma' ); ?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
</div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"25%","style":{"spacing":{"blockGap":"0px"}}} -->
|
||||
<div class="wp-block-column" style="flex-basis:25%">
|
||||
<!-- wp:paragraph {"fontSize":"small"} -->
|
||||
<p class="has-small-font-size"><?php echo esc_html__( 'In 1972, El Paso teenagers were shaped by U.S. cultural, political upheaval - the Vietnam War, civil rights, and Watergate. The city’s border location and rich, diverse history significantly influenced their daily experiences.', 'fotograma' ); ?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
</div>
|
||||
<!-- /wp:column -->
|
||||
</div>
|
||||
<!-- /wp:columns -->
|
||||
|
||||
<!-- wp:cover {"url":"<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/1972-jun-a-teenager-in-the-second-ward-chicano-neighborhood-el-paso.jpg","dimRatio":0,"focalPoint":{"x":0.5,"y":0},"isDark":false,"style":{"layout":{"selfStretch":"fill","flexSize":null}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-cover is-light"><span aria-hidden="true" class="wp-block-cover__background 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/1972-jun-a-teenager-in-the-second-ward-chicano-neighborhood-el-paso.jpg" style="object-position:50% 0%" data-object-fit="cover" data-object-position="50% 0%"/>
|
||||
<div class="wp-block-cover__inner-container">
|
||||
<!-- wp:paragraph {"align":"center","placeholder":"Write title…","fontSize":"large"} -->
|
||||
<p class="has-text-align-center has-large-font-size"></p>
|
||||
<!-- /wp:paragraph -->
|
||||
</div>
|
||||
</div>
|
||||
<!-- /wp:cover -->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"dimensions":{"minHeight":"100vh"},"spacing":{"padding":{"top":"var:preset|spacing|50","right":"var:preset|spacing|50","bottom":"var:preset|spacing|50","left":"var:preset|spacing|50"}},"position":{"type":"sticky","top":"0px"}},"backgroundColor":"base","layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
|
||||
<div class="wp-block-group has-base-background-color has-background" style="min-height:100vh;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)">
|
||||
<!-- wp:columns {"style":{"spacing":{"blockGap":{"top":"var:preset|spacing|40","left":"var:preset|spacing|50"},"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}},"border":{"top":{"color":"var:preset|color|contrast","width":"1px"},"right":[],"bottom":{"color":"var:preset|color|contrast","width":"1px"},"left":[]}}} -->
|
||||
<div class="wp-block-columns" style="border-top-color:var(--wp--preset--color--contrast);border-top-width:1px;border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:1px;padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)">
|
||||
<!-- wp:column {"width":"25%","style":{"spacing":{"blockGap":"0"}}} -->
|
||||
<div class="wp-block-column" style="flex-basis:25%">
|
||||
<!-- wp:pattern {"slug":"fotograma/header"} /-->
|
||||
</div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"25%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:25%"></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"25%","style":{"spacing":{"blockGap":"0px"}}} -->
|
||||
<div class="wp-block-column" style="flex-basis:25%">
|
||||
<!-- wp:paragraph {"fontSize":"small"} -->
|
||||
<p class="has-small-font-size"><?php echo esc_html__( 'Jul. 1974: Four young girls and an open fire hydrant, Brooklyn', 'fotograma' ); ?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"fontSize":"small"} -->
|
||||
<p class="has-small-font-size"><?php echo esc_html__( 'Photographer: Dick Swanson', 'fotograma' ); ?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
</div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"25%","style":{"spacing":{"blockGap":"0px"}}} -->
|
||||
<div class="wp-block-column" style="flex-basis:25%">
|
||||
<!-- wp:paragraph {"fontSize":"small"} -->
|
||||
<p class="has-small-font-size"><?php echo esc_html__( 'In 1974, Brooklyn, housing 2.5M+ people, was a NYC hub with diversity. From the upscale Brooklyn Heights brownstones to the working-class districts of Williamsburg and Greenpoint, it showcased vibrant community life.', 'fotograma' ); ?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
</div>
|
||||
<!-- /wp:column -->
|
||||
</div>
|
||||
<!-- /wp:columns -->
|
||||
|
||||
<!-- wp:cover {"url":"<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/documerica-4fWUuPi4h5w-unsplash.jpg","dimRatio":0,"style":{"layout":{"selfStretch":"fill","flexSize":null}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-cover"><span aria-hidden="true" class="wp-block-cover__background 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/documerica-4fWUuPi4h5w-unsplash.jpg" data-object-fit="cover"/>
|
||||
<div class="wp-block-cover__inner-container">
|
||||
<!-- wp:paragraph {"align":"center","placeholder":"Write title…","fontSize":"large"} -->
|
||||
<p class="has-text-align-center has-large-font-size"></p>
|
||||
<!-- /wp:paragraph -->
|
||||
</div>
|
||||
</div>
|
||||
<!-- /wp:cover -->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"dimensions":{"minHeight":"100vh"},"spacing":{"padding":{"top":"var:preset|spacing|50","right":"var:preset|spacing|50","bottom":"var:preset|spacing|50","left":"var:preset|spacing|50"}},"position":{"type":"sticky","top":"0px"}},"backgroundColor":"base","layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
|
||||
<div class="wp-block-group has-base-background-color has-background" style="min-height:100vh;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)">
|
||||
<!-- wp:columns {"style":{"spacing":{"blockGap":{"top":"var:preset|spacing|40","left":"var:preset|spacing|50"},"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}},"border":{"top":{"color":"var:preset|color|contrast","width":"1px"},"right":[],"bottom":{"color":"var:preset|color|contrast","width":"1px"},"left":[]}}} -->
|
||||
<div class="wp-block-columns" style="border-top-color:var(--wp--preset--color--contrast);border-top-width:1px;border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:1px;padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)">
|
||||
<!-- wp:column {"width":"25%","style":{"spacing":{"blockGap":"0"}}} -->
|
||||
<div class="wp-block-column" style="flex-basis:25%">
|
||||
<!-- wp:pattern {"slug":"fotograma/header"} /-->
|
||||
</div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"25%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:25%"></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"25%","style":{"spacing":{"blockGap":"0px"}}} -->
|
||||
<div class="wp-block-column" style="flex-basis:25%">
|
||||
<!-- wp:paragraph {"fontSize":"small"} -->
|
||||
<p class="has-small-font-size"><?php echo esc_html__( 'Jun. 1974: Manhattan Bridge Tower, Brooklyn', 'fotograma' ); ?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"fontSize":"small"} -->
|
||||
<p class="has-small-font-size"><?php echo esc_html__( 'Photographer: Dick Swanson', 'fotograma' ); ?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
</div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"25%","style":{"spacing":{"blockGap":"0px"}}} -->
|
||||
<div class="wp-block-column" style="flex-basis:25%">
|
||||
<!-- wp:paragraph {"fontSize":"small"} -->
|
||||
<p class="has-small-font-size"><?php echo esc_html__( 'Brooklyn, a quintessential 19th-century American city, boasts great bridges linking it to Manhattan, bustling streets, and a mix of habitation and aesthetics. Its ‘worst’ neighbourhoods preserve some of America’s finest architecture, resisting demolition.', 'fotograma' ); ?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
</div>
|
||||
<!-- /wp:column -->
|
||||
</div>
|
||||
<!-- /wp:columns -->
|
||||
|
||||
<!-- wp:cover {"url":"<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/documerica-QhH_dDe5plY-unsplash.jpg","dimRatio":0,"focalPoint":{"x":0.5,"y":0},"style":{"layout":{"selfStretch":"fill","flexSize":null}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-cover"><span aria-hidden="true" class="wp-block-cover__background 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/documerica-QhH_dDe5plY-unsplash.jpg" style="object-position:50% 0%" data-object-fit="cover" data-object-position="50% 0%"/><div class="wp-block-cover__inner-container">
|
||||
<!-- wp:paragraph {"align":"center","placeholder":"Write title…","fontSize":"large"} -->
|
||||
<p class="has-text-align-center has-large-font-size"></p>
|
||||
<!-- /wp:paragraph -->
|
||||
</div>
|
||||
</div>
|
||||
<!-- /wp:cover -->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"dimensions":{"minHeight":"100vh"},"spacing":{"padding":{"top":"var:preset|spacing|50","right":"var:preset|spacing|50","bottom":"var:preset|spacing|50","left":"var:preset|spacing|50"}},"position":{"type":"sticky","top":"0px"}},"backgroundColor":"base","layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
|
||||
<div class="wp-block-group has-base-background-color has-background" style="min-height:100vh;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)">
|
||||
<!-- wp:columns {"style":{"spacing":{"blockGap":{"top":"var:preset|spacing|40","left":"var:preset|spacing|50"},"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}},"border":{"top":{"color":"var:preset|color|contrast","width":"1px"},"right":[],"bottom":{"color":"var:preset|color|contrast","width":"1px"},"left":[]}}} -->
|
||||
<div class="wp-block-columns" style="border-top-color:var(--wp--preset--color--contrast);border-top-width:1px;border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:1px;padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)">
|
||||
<!-- wp:column {"width":"25%","style":{"spacing":{"blockGap":"0"}}} -->
|
||||
<div class="wp-block-column" style="flex-basis:25%">
|
||||
<!-- wp:pattern {"slug":"fotograma/header"} /-->
|
||||
</div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"25%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:25%"></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"25%","style":{"spacing":{"blockGap":"0px"}}} -->
|
||||
<div class="wp-block-column" style="flex-basis:25%">
|
||||
<!-- wp:paragraph {"fontSize":"small"} -->
|
||||
<p class="has-small-font-size"><?php echo esc_html__( 'Aug. 1973: Taxis on 5th Ave. near 48th Street, Manhattan', 'fotograma' ); ?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"fontSize":"small"} -->
|
||||
<p class="has-small-font-size"><?php echo esc_html__( 'Photographer: Dan McCoy', 'fotograma' ); ?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
</div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"25%","style":{"spacing":{"blockGap":"0px"}}} -->
|
||||
<div class="wp-block-column" style="flex-basis:25%">
|
||||
<!-- wp:paragraph {"fontSize":"small"} -->
|
||||
<p class="has-small-font-size"><?php echo esc_html__( 'In 1973, 5th Ave near 48th St. in Manhattan was a bustling hub, with high-end shops, iconic landmarks like St. Patrick’s Cathedral, and nearby, the allure of Rockefeller Center. It was the heart of NYC, pulsating with the energy of the metropolis.', 'fotograma' ); ?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
</div>
|
||||
<!-- /wp:column -->
|
||||
</div>
|
||||
<!-- /wp:columns -->
|
||||
|
||||
<!-- wp:cover {"url":"<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/1973-aug-taxis-at-48th-and-fifth-manhattan.jpg","dimRatio":0,"style":{"layout":{"selfStretch":"fill","flexSize":null}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-cover"><span aria-hidden="true" class="wp-block-cover__background 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/1973-aug-taxis-at-48th-and-fifth-manhattan.jpg" data-object-fit="cover"/><div class="wp-block-cover__inner-container">
|
||||
<!-- wp:paragraph {"align":"center","placeholder":"Write title…","fontSize":"large"} -->
|
||||
<p class="has-text-align-center has-large-font-size"></p>
|
||||
<!-- /wp:paragraph -->
|
||||
</div>
|
||||
</div>
|
||||
<!-- /wp:cover -->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:pattern {"slug":"fotograma/stack-contact"} /-->
|
11
fotograma/patterns/header.php
Normal file
11
fotograma/patterns/header.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: Stack Photo
|
||||
* Slug: fotograma/header
|
||||
* Categories: featured
|
||||
*/
|
||||
?>
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"blockGap":"0px"}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group"><!-- wp:site-title {"style":{"spacing":{"margin":{"top":"0px","bottom":"0px","right":"0px","left":"0px"}}}} /--></div>
|
||||
<!-- /wp:group -->
|
10
fotograma/patterns/no-results-content.php
Normal file
10
fotograma/patterns/no-results-content.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: No Results Content
|
||||
* Slug: fotograma/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', 'fotograma' ); ?></p>
|
||||
<!-- /wp:paragraph -->
|
9
fotograma/patterns/search.php
Normal file
9
fotograma/patterns/search.php
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: Search
|
||||
* Slug: fotograma/search
|
||||
* Inserter: no
|
||||
*/
|
||||
?>
|
||||
|
||||
<!-- wp:search {"label":"","showLabel":false,"placeholder":"<?php echo esc_html_x( 'Search...', 'This is a placeholder text in a search field', 'fotograma' ); ?>","buttonText":"Search","buttonUseIcon":true} /-->
|
59
fotograma/patterns/stack-contact.php
Normal file
59
fotograma/patterns/stack-contact.php
Normal file
|
@ -0,0 +1,59 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: Stack Contact
|
||||
* Slug: fotograma/stack-contact
|
||||
* Categories: featured
|
||||
*/
|
||||
?>
|
||||
|
||||
<!-- wp:group {"style":{"dimensions":{"minHeight":"100vh"},"spacing":{"padding":{"top":"var:preset|spacing|50","right":"var:preset|spacing|50","bottom":"var:preset|spacing|50","left":"var:preset|spacing|50"}},"position":{"type":"sticky","top":"0px"}},"backgroundColor":"base","layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
|
||||
<div class="wp-block-group has-base-background-color has-background" style="min-height:100vh;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)">
|
||||
<!-- wp:columns {"style":{"spacing":{"blockGap":{"top":"var:preset|spacing|40","left":"var:preset|spacing|50"},"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}},"border":{"top":{"color":"var:preset|color|contrast","width":"1px"},"bottom":{"color":"var:preset|color|contrast","width":"1px"}},"layout":{"selfStretch":"fit","flexSize":null}}} -->
|
||||
<div class="wp-block-columns" style="border-top-color:var(--wp--preset--color--contrast);border-top-width:1px;border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:1px;padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)">
|
||||
<!-- wp:column {"width":"25%","style":{"spacing":{"blockGap":"0"}}} -->
|
||||
<div class="wp-block-column" style="flex-basis:25%">
|
||||
<!-- wp:pattern {"slug":"fotograma/header"} /-->
|
||||
</div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"25%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:25%"></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"25%","style":{"spacing":{"blockGap":"0px"}}} -->
|
||||
<div class="wp-block-column" style="flex-basis:25%">
|
||||
<!-- wp:paragraph {"fontSize":"small"} -->
|
||||
<p class="has-small-font-size"><?php echo esc_html__( 'Contact', 'fotograma' ); ?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
</div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"25%","style":{"spacing":{"blockGap":"0px"}}} -->
|
||||
<div class="wp-block-column" style="flex-basis:25%"></div>
|
||||
<!-- /wp:column -->
|
||||
</div>
|
||||
<!-- /wp:columns -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"blockGap":"0"},"layout":{"selfStretch":"fill","flexSize":null}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch","flexWrap":"wrap","verticalAlignment":"space-between"}} -->
|
||||
<div class="wp-block-group">
|
||||
<!-- wp:group {"style":{"spacing":{"blockGap":"0"}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group">
|
||||
<!-- wp:paragraph {"style":{"typography":{"lineHeight":"0.9","letterSpacing":"-0.02em"}},"fontSize":"huge"} -->
|
||||
<p class="has-huge-font-size" style="letter-spacing:-0.02em;line-height:0.9"><a href="#"><?php echo esc_html__( 'Email', 'fotograma' ); ?></a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"typography":{"lineHeight":"0.9","letterSpacing":"-0.02em"}},"fontSize":"huge"} -->
|
||||
<p class="has-huge-font-size" style="letter-spacing:-0.02em;line-height:0.9"><a href="#"><?php echo esc_html__( 'Tumblr', 'fotograma' ); ?></a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"typography":{"lineHeight":"0.9","letterSpacing":"-0.02em"}},"fontSize":"huge"} -->
|
||||
<p class="has-huge-font-size" style="letter-spacing:-0.02em;line-height:0.9"><a href="#"><?php echo esc_html__( 'Instagram', 'fotograma' ); ?></a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:pattern {"slug":"fotograma/footer-home"} /-->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
56
fotograma/patterns/stack-photo.php
Normal file
56
fotograma/patterns/stack-photo.php
Normal file
|
@ -0,0 +1,56 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: Stack Photo
|
||||
* Slug: fotograma/stack-photo
|
||||
* Categories: featured
|
||||
*/
|
||||
?>
|
||||
|
||||
<!-- wp:group {"style":{"dimensions":{"minHeight":"100vh"},"spacing":{"padding":{"top":"var:preset|spacing|50","right":"var:preset|spacing|50","bottom":"var:preset|spacing|50","left":"var:preset|spacing|50"}},"position":{"type":"sticky","top":"0px"}},"backgroundColor":"base","layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
|
||||
<div class="wp-block-group has-base-background-color has-background" style="min-height:100vh;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)">
|
||||
<!-- wp:columns {"style":{"spacing":{"blockGap":{"top":"var:preset|spacing|40","left":"var:preset|spacing|50"},"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}},"border":{"top":{"color":"var:preset|color|contrast","width":"1px"},"bottom":{"color":"var:preset|color|contrast","width":"1px"},"right":[],"left":[]}}} -->
|
||||
<div class="wp-block-columns" style="border-top-color:var(--wp--preset--color--contrast);border-top-width:1px;border-bottom-color:var(--wp--preset--color--contrast);border-bottom-width:1px;padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)">
|
||||
<!-- wp:column {"width":"25%","style":{"spacing":{"blockGap":"0"}}} -->
|
||||
<div class="wp-block-column" style="flex-basis:25%">
|
||||
<!-- wp:pattern {"slug":"fotograma/header"} /-->
|
||||
</div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"25%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:25%"></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"25%","style":{"spacing":{"blockGap":"0px"}}} -->
|
||||
<div class="wp-block-column" style="flex-basis:25%">
|
||||
<!-- wp:paragraph {"fontSize":"small"} -->
|
||||
<p class="has-small-font-size"><?php echo esc_html__( 'August 1973: North Philadelphia Children', 'fotograma' ); ?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"fontSize":"small"} -->
|
||||
<p class="has-small-font-size"><?php echo esc_html__( 'Photographer: Dick Swanson', 'fotograma' ); ?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
</div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"25%","style":{"spacing":{"blockGap":"0px"}}} -->
|
||||
<div class="wp-block-column" style="flex-basis:25%">
|
||||
<!-- wp:paragraph {"fontSize":"small"} -->
|
||||
<p class="has-small-font-size"><?php echo esc_html__( 'In the 1970s, North Philadelphia, a largely African American, working-class area, boasted rich history and lively culture. With row houses, apartments, small businesses, it nurtured a close-knit community with robust pride and belonging.', 'fotograma' ); ?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
</div>
|
||||
<!-- /wp:column -->
|
||||
</div>
|
||||
<!-- /wp:columns -->
|
||||
|
||||
<!-- wp:cover {"url":"<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/documerica-vOxIhoEXPvc-unsplash.jpg","dimRatio":0,"focalPoint":{"x":0.5,"y":0.8},"style":{"layout":{"selfStretch":"fill","flexSize":null}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-cover"><span aria-hidden="true" class="wp-block-cover__background 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/documerica-vOxIhoEXPvc-unsplash.jpg" style="object-position:50% 80%" data-object-fit="cover" data-object-position="50% 80%"/>
|
||||
<div class="wp-block-cover__inner-container">
|
||||
<!-- wp:paragraph {"align":"center","placeholder":"Write title…","fontSize":"large"} -->
|
||||
<p class="has-text-align-center has-large-font-size"></p>
|
||||
<!-- /wp:paragraph -->
|
||||
</div>
|
||||
</div>
|
||||
<!-- /wp:cover -->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
55
fotograma/readme.txt
Normal file
55
fotograma/readme.txt
Normal file
|
@ -0,0 +1,55 @@
|
|||
=== Fotograma ===
|
||||
Contributors: Automattic
|
||||
Requires at least: 6.2
|
||||
Tested up to: 6.2
|
||||
Requires PHP: 5.7
|
||||
License: GPLv2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
|
||||
== Description ==
|
||||
|
||||
Fotograma is a portfolio theme for photographers seeking to showcase powerful photography in large sizes.
|
||||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 =
|
||||
* Initial release
|
||||
|
||||
== Copyright ==
|
||||
|
||||
Fotograma WordPress Theme, (C) 2023 Automattic
|
||||
Fotograma is distributed under the terms of the GNU GPL.
|
||||
Fotograma is based on Tomoni (https://wordpress.com/theme/tomoni/), (C) Automattic, [GPLv2 or later](http://www.gnu.org/licenses/gpl-2.0.html)
|
||||
|
||||
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.
|
||||
|
||||
This theme bundles the following third-party resources:
|
||||
|
||||
Inter Font
|
||||
Licensed under SIL Open Font License, 1.10 (http://scripts.sil.org/OFL)
|
||||
Source: https://rsms.me/inter/
|
||||
|
||||
Aug. 1973: Taxis on 5th Ave. near 48th Street, Manhattan by a photographer, Dan McCoy
|
||||
https://www.documerica.org/documerica-photographs/aug-1973-taxis-on-5th-ave-near-48th-street
|
||||
|
||||
Jul. 1974: Four young girls and an open fire hydrant, Brooklyn by a photographer: Danny Lyon
|
||||
https://www.documerica.org/documerica-photographs/jul-1974-four-young-girls-and-an-open-fire-hydrant-brooklyn
|
||||
|
||||
Jun. 1974: Manhattan Bridge Tower, Brooklyn by a photographer: Danny Lyon
|
||||
https://www.documerica.org/documerica-photographs/jun-1974-manhattan-bridge-tower-brooklyn
|
||||
|
||||
Jun. 1972: Teenager, Second Ward, El Paso by a photographer: Danny Lyon
|
||||
https://www.documerica.org/documerica-photographs/jun-1972-teenager-second-ward-el-paso
|
||||
|
||||
August 1973: North Philadelphia Children by a photographer: Dick Swanson
|
||||
https://www.documerica.org/documerica-photographs/august-1973-north-philadelphia-children
|
||||
|
||||
Included in a theme template
|
BIN
fotograma/screenshot.png
Normal file
BIN
fotograma/screenshot.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1,004 KiB |
74
fotograma/style.css
Normal file
74
fotograma/style.css
Normal file
|
@ -0,0 +1,74 @@
|
|||
/*
|
||||
Theme Name: Fotograma
|
||||
Theme URI: https://wordpress.com/theme/fotograma/
|
||||
Author: Automattic
|
||||
Author URI: https://automattic.com/
|
||||
Description: Fotograma is a portfolio theme for photographers seeking to showcase powerful photography in large sizes.
|
||||
Requires at least: 5.8
|
||||
Tested up to: 6.2
|
||||
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: fotograma
|
||||
Tags: photography, one-column, wide-blocks, block-patterns, block-styles, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, full-site-editing, rtl-language-support, style-variations, template-editing, theme-options, threaded-comments, translation-ready, blog, news
|
||||
*//*
|
||||
* OpenType feature for Noto Sans Japanese.
|
||||
* It re-spaces glyphs designed to be set on full-em widths, fitting them onto half-em widths.
|
||||
*/
|
||||
body {
|
||||
font-feature-settings: "halt";
|
||||
}
|
||||
|
||||
/*
|
||||
* 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--primary);
|
||||
border-color: var(--wp--preset--color--primary);
|
||||
color: var(--wp--preset--color--base);
|
||||
}
|
||||
|
||||
/*
|
||||
* Link styles
|
||||
* https://github.com/WordPress/gutenberg/issues/42319
|
||||
*/
|
||||
a {
|
||||
text-decoration-thickness: 0.5px !important;
|
||||
text-underline-offset: 2px;
|
||||
}
|
||||
|
||||
/*
|
||||
* Avatar Block
|
||||
* Fix border radius setting for the avatar block
|
||||
* https://github.com/WordPress/gutenberg/issues/48253
|
||||
*/
|
||||
.wp-block-avatar a,
|
||||
.wp-block-avatar img {
|
||||
border-radius: inherit;
|
||||
}
|
||||
|
||||
/*
|
||||
* Pull quote Block
|
||||
* Reset the browser default margins for blockquote element
|
||||
* https://github.com/WordPress/gutenberg/issues/44129
|
||||
*/
|
||||
.wp-block-pullquote blockquote {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Term Description Block
|
||||
* Reset the browser default margins for paragraph element
|
||||
* https://github.com/WordPress/gutenberg/issues/50515
|
||||
*/
|
||||
|
||||
.wp-block-term-description p:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.wp-block-term-description p:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
26
fotograma/styles/whitesmoke.json
Normal file
26
fotograma/styles/whitesmoke.json
Normal file
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
"$schema": "https://schemas.wp.org/trunk/theme.json",
|
||||
"version": 2,
|
||||
"title": "Whitesmoke",
|
||||
"settings": {
|
||||
"color": {
|
||||
"palette": [
|
||||
{
|
||||
"color": "#ffffff",
|
||||
"name": "Base",
|
||||
"slug": "base"
|
||||
},
|
||||
{
|
||||
"color": "#000000",
|
||||
"name": "Contrast",
|
||||
"slug": "contrast"
|
||||
},
|
||||
{
|
||||
"color": "#757575",
|
||||
"name": "Primary",
|
||||
"slug": "primary"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
27
fotograma/templates/404.html
Normal file
27
fotograma/templates/404.html
Normal file
|
@ -0,0 +1,27 @@
|
|||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}},"position":{"type":"sticky","top":"0px"}},"backgroundColor":"base","layout":{"type":"constrained","justifyContent":"left"}} -->
|
||||
<div
|
||||
class="wp-block-group has-base-background-color has-background"
|
||||
style="
|
||||
padding-top: var(--wp--preset--spacing--50);
|
||||
padding-bottom: var(--wp--preset--spacing--50);
|
||||
"
|
||||
>
|
||||
<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"var:preset|spacing|70","bottom":"var:preset|spacing|70"}}},"layout":{"type":"constrained","justifyContent":"left"}} -->
|
||||
<main
|
||||
class="wp-block-group"
|
||||
style="
|
||||
margin-top: var(--wp--preset--spacing--70);
|
||||
margin-bottom: var(--wp--preset--spacing--70);
|
||||
"
|
||||
>
|
||||
<!-- wp:pattern {"slug":"fotograma/404"} /-->
|
||||
|
||||
<!-- wp:pattern {"slug":"fotograma/search"} /-->
|
||||
</main>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->
|
72
fotograma/templates/archive.html
Normal file
72
fotograma/templates/archive.html
Normal file
|
@ -0,0 +1,72 @@
|
|||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}},"position":{"type":"sticky","top":"0px"}},"backgroundColor":"base","layout":{"type":"constrained","justifyContent":"left"}} -->
|
||||
<div
|
||||
class="wp-block-group has-base-background-color has-background"
|
||||
style="
|
||||
padding-top: var(--wp--preset--spacing--50);
|
||||
padding-bottom: var(--wp--preset--spacing--50);
|
||||
"
|
||||
>
|
||||
<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"var:preset|spacing|70","bottom":"var:preset|spacing|70"}}},"layout":{"type":"constrained","justifyContent":"left"}} -->
|
||||
<main
|
||||
class="wp-block-group"
|
||||
style="
|
||||
margin-top: var(--wp--preset--spacing--70);
|
||||
margin-bottom: var(--wp--preset--spacing--70);
|
||||
"
|
||||
>
|
||||
<!-- wp:group {"style":{"spacing":{"margin":{"bottom":"var:preset|spacing|80"}}},"layout":{"type":"constrained"}} -->
|
||||
<div
|
||||
class="wp-block-group"
|
||||
style="margin-bottom: var(--wp--preset--spacing--80)"
|
||||
>
|
||||
<!-- wp:query-title {"type":"archive","showPrefix":false,"style":{"spacing":{"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}}} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|30"}}},"layout":{"type":"constrained"}} -->
|
||||
<div
|
||||
class="wp-block-group"
|
||||
style="margin-top: var(--wp--preset--spacing--30)"
|
||||
>
|
||||
<!-- wp:term-description {"style":{"spacing":{"margin":{"top":"var:preset|spacing|30"}}}} /-->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:query {"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true,"taxQuery":null,"parents":[]},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-query">
|
||||
<!-- wp:post-template -->
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"bottom":"var:preset|spacing|80"}}}} -->
|
||||
<div
|
||||
class="wp-block-group"
|
||||
style="padding-bottom: var(--wp--preset--spacing--80)"
|
||||
>
|
||||
<!-- wp:post-title {"isLink":true} /-->
|
||||
|
||||
<!-- wp:post-date {"style":{"spacing":{"margin":{"top":"var:preset|spacing|30"}}}} /-->
|
||||
|
||||
<!-- wp:post-featured-image {"isLink":true} /-->
|
||||
|
||||
<!-- wp:post-excerpt /-->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
<!-- /wp:post-template -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"0px"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="margin-top: 0px">
|
||||
<!-- wp:query-pagination {"paginationArrow":"arrow","layout":{"type":"flex","justifyContent":"space-between"}} -->
|
||||
<!-- wp:query-pagination-previous /-->
|
||||
|
||||
<!-- wp:query-pagination-next /-->
|
||||
<!-- /wp:query-pagination -->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
</div>
|
||||
<!-- /wp:query -->
|
||||
</main>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->
|
1
fotograma/templates/front-page.html
Normal file
1
fotograma/templates/front-page.html
Normal file
|
@ -0,0 +1 @@
|
|||
<!-- wp:pattern {"slug":"fotograma/front-page"} /-->
|
54
fotograma/templates/index.html
Normal file
54
fotograma/templates/index.html
Normal file
|
@ -0,0 +1,54 @@
|
|||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}},"position":{"type":"sticky","top":"0px"}},"backgroundColor":"base","layout":{"type":"constrained","justifyContent":"left"}} -->
|
||||
<div
|
||||
class="wp-block-group has-base-background-color has-background"
|
||||
style="
|
||||
padding-top: var(--wp--preset--spacing--50);
|
||||
padding-bottom: var(--wp--preset--spacing--50);
|
||||
"
|
||||
>
|
||||
<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"var:preset|spacing|70","bottom":"var:preset|spacing|70"}}},"layout":{"type":"constrained","justifyContent":"left"}} -->
|
||||
<main
|
||||
class="wp-block-group"
|
||||
style="
|
||||
margin-top: var(--wp--preset--spacing--70);
|
||||
margin-bottom: var(--wp--preset--spacing--70);
|
||||
"
|
||||
>
|
||||
<!-- wp:query {"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true,"taxQuery":null,"parents":[]},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-query">
|
||||
<!-- wp:post-template -->
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"bottom":"var:preset|spacing|80"}}}} -->
|
||||
<div
|
||||
class="wp-block-group"
|
||||
style="padding-bottom: var(--wp--preset--spacing--80)"
|
||||
>
|
||||
<!-- wp:post-title {"isLink":true} /-->
|
||||
|
||||
<!-- wp:post-date {"style":{"spacing":{"margin":{"top":"var:preset|spacing|30"}}}} /-->
|
||||
|
||||
<!-- wp:post-featured-image {"isLink":true} /-->
|
||||
|
||||
<!-- wp:post-excerpt /-->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
<!-- /wp:post-template -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"0px"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="margin-top: 0px">
|
||||
<!-- wp:query-pagination {"paginationArrow":"arrow","layout":{"type":"flex","justifyContent":"space-between"}} -->
|
||||
<!-- wp:query-pagination-previous /-->
|
||||
|
||||
<!-- wp:query-pagination-next /-->
|
||||
<!-- /wp:query-pagination -->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
</div>
|
||||
<!-- /wp:query -->
|
||||
</main>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->
|
59
fotograma/templates/page.html
Normal file
59
fotograma/templates/page.html
Normal file
|
@ -0,0 +1,59 @@
|
|||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}},"position":{"type":"sticky","top":"0px"}},"backgroundColor":"base","layout":{"type":"constrained","justifyContent":"left"}} -->
|
||||
<div
|
||||
class="wp-block-group has-base-background-color has-background"
|
||||
style="
|
||||
padding-top: var(--wp--preset--spacing--50);
|
||||
padding-bottom: var(--wp--preset--spacing--50);
|
||||
"
|
||||
>
|
||||
<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"var:preset|spacing|70","bottom":"var:preset|spacing|70"}}}} -->
|
||||
<main
|
||||
class="wp-block-group"
|
||||
style="
|
||||
margin-top: var(--wp--preset--spacing--70);
|
||||
margin-bottom: var(--wp--preset--spacing--70);
|
||||
"
|
||||
>
|
||||
<!-- wp:group {"layout":{"type":"constrained","justifyContent":"left"}} -->
|
||||
<div class="wp-block-group">
|
||||
<!-- wp:post-title /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|70","bottom":"0"}}},"layout":{"type":"constrained"}} -->
|
||||
<div
|
||||
class="wp-block-group"
|
||||
style="margin-top: var(--wp--preset--spacing--70); margin-bottom: 0"
|
||||
>
|
||||
<!-- wp:post-featured-image /-->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|70"}}}} -->
|
||||
<div
|
||||
class="wp-block-group"
|
||||
style="margin-top: var(--wp--preset--spacing--70)"
|
||||
>
|
||||
<!-- wp:post-content {"layout":{"type":"constrained","justifyContent":"left"}} /-->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
</main>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|80","bottom":"var:preset|spacing|70"}}},"layout":{"type":"constrained","justifyContent":"left"}} -->
|
||||
<div
|
||||
class="wp-block-group"
|
||||
style="
|
||||
margin-top: var(--wp--preset--spacing--80);
|
||||
margin-bottom: var(--wp--preset--spacing--70);
|
||||
"
|
||||
>
|
||||
<!-- wp:template-part {"slug":"comments"} /-->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->
|
69
fotograma/templates/search.html
Normal file
69
fotograma/templates/search.html
Normal file
|
@ -0,0 +1,69 @@
|
|||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}},"position":{"type":"sticky","top":"0px"}},"backgroundColor":"base","layout":{"type":"constrained","justifyContent":"left"}} -->
|
||||
<div
|
||||
class="wp-block-group has-base-background-color has-background"
|
||||
style="
|
||||
padding-top: var(--wp--preset--spacing--50);
|
||||
padding-bottom: var(--wp--preset--spacing--50);
|
||||
"
|
||||
>
|
||||
<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"var:preset|spacing|70","bottom":"var:preset|spacing|70"}}},"layout":{"type":"constrained","justifyContent":"left"}} -->
|
||||
<main
|
||||
class="wp-block-group"
|
||||
style="
|
||||
margin-top: var(--wp--preset--spacing--70);
|
||||
margin-bottom: var(--wp--preset--spacing--70);
|
||||
"
|
||||
>
|
||||
<!-- wp:group {"style":{"spacing":{"margin":{"bottom":"var:preset|spacing|80"}}},"layout":{"type":"constrained"}} -->
|
||||
<div
|
||||
class="wp-block-group"
|
||||
style="margin-bottom: var(--wp--preset--spacing--80)"
|
||||
>
|
||||
<!-- wp:pattern {"slug":"fotograma/search"} /-->
|
||||
|
||||
<!-- wp:query-title {"type":"search"} /-->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:query {"queryId":6,"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true,"taxQuery":null,"parents":[]},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-query">
|
||||
<!-- wp:post-template -->
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"bottom":"var:preset|spacing|80"}}}} -->
|
||||
<div
|
||||
class="wp-block-group"
|
||||
style="padding-bottom: var(--wp--preset--spacing--80)"
|
||||
>
|
||||
<!-- wp:post-title {"isLink":true} /-->
|
||||
|
||||
<!-- wp:post-date {"style":{"spacing":{"margin":{"top":"var:preset|spacing|30"}}}} /-->
|
||||
|
||||
<!-- wp:post-featured-image {"isLink":true} /-->
|
||||
|
||||
<!-- wp:post-excerpt /-->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
<!-- /wp:post-template -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"0px"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="margin-top: 0px">
|
||||
<!-- wp:query-pagination {"paginationArrow":"arrow","layout":{"type":"flex","justifyContent":"space-between"}} -->
|
||||
<!-- wp:query-pagination-previous /-->
|
||||
|
||||
<!-- wp:query-pagination-next /-->
|
||||
<!-- /wp:query-pagination -->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:query-no-results -->
|
||||
<!-- wp:pattern {"slug":"fotograma/no-results-content"} /-->
|
||||
<!-- /wp:query-no-results -->
|
||||
</div>
|
||||
<!-- /wp:query -->
|
||||
</main>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->
|
79
fotograma/templates/single.html
Normal file
79
fotograma/templates/single.html
Normal file
|
@ -0,0 +1,79 @@
|
|||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}},"position":{"type":"sticky","top":"0px"}},"backgroundColor":"base","layout":{"type":"constrained","justifyContent":"left"}} -->
|
||||
<div
|
||||
class="wp-block-group has-base-background-color has-background"
|
||||
style="
|
||||
padding-top: var(--wp--preset--spacing--50);
|
||||
padding-bottom: var(--wp--preset--spacing--50);
|
||||
"
|
||||
>
|
||||
<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"var:preset|spacing|70","bottom":"var:preset|spacing|70"}}}} -->
|
||||
<main
|
||||
class="wp-block-group"
|
||||
style="
|
||||
margin-top: var(--wp--preset--spacing--70);
|
||||
margin-bottom: var(--wp--preset--spacing--70);
|
||||
"
|
||||
>
|
||||
<!-- wp:group {"layout":{"type":"constrained","justifyContent":"left"}} -->
|
||||
<div class="wp-block-group">
|
||||
<!-- wp:post-title /-->
|
||||
|
||||
<!-- wp:post-date {"style":{"spacing":{"margin":{"top":"var:preset|spacing|30"}}}} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|70"}}},"layout":{"type":"constrained"}} -->
|
||||
<div
|
||||
class="wp-block-group"
|
||||
style="margin-top: var(--wp--preset--spacing--70)"
|
||||
>
|
||||
<!-- wp:post-featured-image /-->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|70","bottom":"var:preset|spacing|80"}}}} -->
|
||||
<div
|
||||
class="wp-block-group"
|
||||
style="
|
||||
margin-top: var(--wp--preset--spacing--70);
|
||||
margin-bottom: var(--wp--preset--spacing--80);
|
||||
"
|
||||
>
|
||||
<!-- wp:post-content {"layout":{"type":"constrained","justifyContent":"left"}} /-->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|80"}}},"layout":{"type":"constrained","justifyContent":"left"}} -->
|
||||
<div
|
||||
class="wp-block-group"
|
||||
style="margin-top: var(--wp--preset--spacing--80)"
|
||||
>
|
||||
<!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"space-between"}} -->
|
||||
<div class="wp-block-group">
|
||||
<!-- wp:post-navigation-link {"type":"previous","label":"Previous Post","arrow":"arrow"} /-->
|
||||
|
||||
<!-- wp:post-navigation-link {"textAlign":"right","label":"Next Post","arrow":"arrow"} /-->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
</main>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|80","bottom":"var:preset|spacing|80"}}},"layout":{"type":"constrained","justifyContent":"left"}} -->
|
||||
<div
|
||||
class="wp-block-group"
|
||||
style="
|
||||
margin-top: var(--wp--preset--spacing--80);
|
||||
margin-bottom: var(--wp--preset--spacing--80);
|
||||
"
|
||||
>
|
||||
<!-- wp:template-part {"slug":"comments"} /-->
|
||||
</div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->
|
931
fotograma/theme.json
Normal file
931
fotograma/theme.json
Normal file
|
@ -0,0 +1,931 @@
|
|||
{
|
||||
"settings": {
|
||||
"appearanceTools": true,
|
||||
"color": {
|
||||
"background": true,
|
||||
"custom": true,
|
||||
"customDuotone": true,
|
||||
"customGradient": true,
|
||||
"defaultDuotone": true,
|
||||
"defaultGradients": true,
|
||||
"defaultPalette": true,
|
||||
"duotone": [],
|
||||
"gradients": [],
|
||||
"palette": [
|
||||
{
|
||||
"color": "#000000",
|
||||
"name": "Base",
|
||||
"slug": "base"
|
||||
},
|
||||
{
|
||||
"color": "#ffffff",
|
||||
"name": "Contrast",
|
||||
"slug": "contrast"
|
||||
},
|
||||
{
|
||||
"color": "#757575",
|
||||
"name": "Primary",
|
||||
"slug": "primary"
|
||||
}
|
||||
],
|
||||
"text": true
|
||||
},
|
||||
"layout": {
|
||||
"contentSize": "640px",
|
||||
"wideSize": "1304px"
|
||||
},
|
||||
"shadow": {
|
||||
"defaultPresets": true,
|
||||
"presets": []
|
||||
},
|
||||
"spacing": {
|
||||
"customSpacingSize": true,
|
||||
"spacingScale": {
|
||||
"increment": 1.5,
|
||||
"mediumStep": 1.5,
|
||||
"operator": "*",
|
||||
"steps": 0,
|
||||
"unit": "rem"
|
||||
},
|
||||
"spacingSizes": [
|
||||
{
|
||||
"name": "1",
|
||||
"size": "0.25rem",
|
||||
"slug": "30"
|
||||
},
|
||||
{
|
||||
"name": "2",
|
||||
"size": "0.75rem",
|
||||
"slug": "40"
|
||||
},
|
||||
{
|
||||
"name": "3",
|
||||
"size": "1.5rem",
|
||||
"slug": "50"
|
||||
},
|
||||
{
|
||||
"name": "4",
|
||||
"size": "2.25rem",
|
||||
"slug": "60"
|
||||
},
|
||||
{
|
||||
"name": "5",
|
||||
"size": "3rem",
|
||||
"slug": "70"
|
||||
},
|
||||
{
|
||||
"name": "6",
|
||||
"size": "4.5rem",
|
||||
"slug": "80"
|
||||
}
|
||||
],
|
||||
"units": [
|
||||
"%",
|
||||
"px",
|
||||
"em",
|
||||
"rem",
|
||||
"vh",
|
||||
"vw"
|
||||
]
|
||||
},
|
||||
"typography": {
|
||||
"customFontSize": true,
|
||||
"dropCap": true,
|
||||
"fluid": true,
|
||||
"fontFamilies": [
|
||||
{
|
||||
"fontFace": [
|
||||
{
|
||||
"fontFamily": "Inter",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "100 900",
|
||||
"src": [
|
||||
"file:./assets/fonts/inter_normal_100 900.woff2"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Inter",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "100 900",
|
||||
"src": [
|
||||
"file:./assets/fonts/inter_italic_100 900.woff2"
|
||||
]
|
||||
}
|
||||
],
|
||||
"fontFamily": "Inter",
|
||||
"slug": "inter"
|
||||
}
|
||||
],
|
||||
"fontSizes": [
|
||||
{
|
||||
"fluid": true,
|
||||
"name": "Extra Small",
|
||||
"size": "0.694rem",
|
||||
"slug": "x-small"
|
||||
},
|
||||
{
|
||||
"fluid": true,
|
||||
"name": "Small",
|
||||
"size": "0.833rem",
|
||||
"slug": "small"
|
||||
},
|
||||
{
|
||||
"fluid": true,
|
||||
"name": "Medium",
|
||||
"size": "1rem",
|
||||
"slug": "medium"
|
||||
},
|
||||
{
|
||||
"fluid": true,
|
||||
"name": "Large",
|
||||
"size": "1.2rem",
|
||||
"slug": "large"
|
||||
},
|
||||
{
|
||||
"fluid": true,
|
||||
"name": "Extra Large",
|
||||
"size": "1.44rem",
|
||||
"slug": "x-large"
|
||||
},
|
||||
{
|
||||
"fluid": true,
|
||||
"name": "Double Extra Large",
|
||||
"size": "1.728rem",
|
||||
"slug": "xx-large"
|
||||
},
|
||||
{
|
||||
"fluid": {
|
||||
"max": "15.407rem",
|
||||
"min": "3.583rem"
|
||||
},
|
||||
"name": "Huge",
|
||||
"size": "22.186rem",
|
||||
"slug": "huge"
|
||||
}
|
||||
],
|
||||
"fontStyle": true,
|
||||
"fontWeight": true,
|
||||
"letterSpacing": true,
|
||||
"textDecoration": true,
|
||||
"textTransform": true
|
||||
},
|
||||
"useRootPaddingAwareAlignments": true
|
||||
},
|
||||
"styles": {
|
||||
"blocks": {
|
||||
"core/archives": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
"spacing": {
|
||||
"padding": {
|
||||
"left": "var(--wp--preset--spacing--40)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/avatar": {
|
||||
"border": {
|
||||
"radius": "999px"
|
||||
},
|
||||
"typography": {
|
||||
"lineHeight": "0"
|
||||
}
|
||||
},
|
||||
"core/button": {
|
||||
"variations": {
|
||||
"outline": {
|
||||
"border": {
|
||||
"width": "1px"
|
||||
},
|
||||
"spacing": {
|
||||
"padding": {
|
||||
"bottom": "15px",
|
||||
"left": "27px",
|
||||
"right": "27px",
|
||||
"top": "17px"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/buttons": {
|
||||
"spacing": {
|
||||
"blockGap": "var(--wp--preset--spacing--40)"
|
||||
}
|
||||
},
|
||||
"core/calendar": {
|
||||
"css": ".wp-block-calendar table:where(:not(.has-text-color)) {color: var(--wp--preset--color--contrast);} .wp-block-calendar table:where(:not(.has-text-color)) td,.wp-block-calendar table:where(:not(.has-text-color)) th {border-color: var(--wp--preset--color--contrast);}:where(.wp-block-calendar table:not(.has-background) th) {background-color: var(--wp--preset--color--contrast);color: var(--wp--preset--color--base);}"
|
||||
},
|
||||
"core/categories": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
"spacing": {
|
||||
"padding": {
|
||||
"left": "var(--wp--preset--spacing--40)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/code": {
|
||||
"border": {
|
||||
"color": "var(--wp--preset--color--contrast)",
|
||||
"radius": "0",
|
||||
"style": "solid",
|
||||
"width": "1px"
|
||||
},
|
||||
"color": {
|
||||
"background": "rgba(0,0,0,0.2)"
|
||||
},
|
||||
"spacing": {
|
||||
"padding": {
|
||||
"bottom": "var(--wp--preset--spacing--40)",
|
||||
"left": "var(--wp--preset--spacing--40)",
|
||||
"right": "var(--wp--preset--spacing--40)",
|
||||
"top": "var(--wp--preset--spacing--40)"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontFamily": "monospace"
|
||||
}
|
||||
},
|
||||
"core/comment-author-name": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)"
|
||||
}
|
||||
},
|
||||
"core/comment-date": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)"
|
||||
}
|
||||
},
|
||||
"core/comment-edit-link": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)"
|
||||
}
|
||||
},
|
||||
"core/comment-reply-link": {
|
||||
"elements": {
|
||||
"link": {
|
||||
"border": {
|
||||
"color": "var(--wp--preset--color--contrast)",
|
||||
"radius": "2px",
|
||||
"style": "solid",
|
||||
"width": "1px"
|
||||
},
|
||||
"spacing": {
|
||||
"padding": "2px 8px"
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"fontWeight": "400",
|
||||
"letterSpacing": "0.04em",
|
||||
"textTransform": "uppercase"
|
||||
}
|
||||
},
|
||||
"core/comments-pagination": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/comments-title": {
|
||||
"spacing": {
|
||||
"margin": {
|
||||
"bottom": "var(--wp--preset--spacing--50)",
|
||||
"top": "0px"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--large)"
|
||||
}
|
||||
},
|
||||
"core/cover": {
|
||||
"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)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/image": {
|
||||
"css": " .wp-element-caption{text-align:center;}"
|
||||
},
|
||||
"core/latest-comments": {
|
||||
"css": " .wp-block-latest-comments__comment-date {font-size: var(--wp--preset--font-size--x-small);}.wp-block-latest-comments__comment-excerpt p{font-size: var(--wp--preset--font-size--small);}.wp-block-latest-comments__comment-excerpt p{margin:var(--wp--preset--spacing--30) 0 var(--wp--preset--spacing--50)}",
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
"spacing": {
|
||||
"padding": {
|
||||
"left": "0px"
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/latest-posts": {
|
||||
"css": " .wp-block-latest-posts__post-author,.wp-block-latest-posts__post-date {font-size: var(--wp--preset--font-size--x-small);}.wp-block-latest-posts__post-excerpt{margin:var(--wp--preset--spacing--40) 0 var(--wp--preset--spacing--50)}",
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/list": {
|
||||
"spacing": {
|
||||
"padding": {
|
||||
"left": "var(--wp--preset--spacing--40)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/navigation": {
|
||||
"css": ".wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container {border-color:var(--wp--preset--color--contrast);} .wp-block-navigation__submenu-container.has-background {padding:0;}",
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)"
|
||||
}
|
||||
},
|
||||
"core/page-list": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/paragraph": {
|
||||
"typography": {
|
||||
"lineHeight": "calc(1em + 0.5rem)"
|
||||
}
|
||||
},
|
||||
"core/post-author": {
|
||||
"css": ".wp-block-post-author .wp-block-post-author__byline{font-size:0.7em;} .wp-block-post-author .wp-block-post-author__bio {font-size:inherit;} .wp-block-post-author__avatar img {vertical-align:middle;} .wp-block-post-author__bio {margin:0;} .wp-block-post-author__avatar img {border-radius: 999px;}",
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)"
|
||||
}
|
||||
},
|
||||
"core/post-author-name": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)"
|
||||
}
|
||||
},
|
||||
"core/post-comments-count": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)"
|
||||
}
|
||||
},
|
||||
"core/post-comments-form": {
|
||||
"css": ".wp-block-post-comments-form .comment-form input:not([type=submit]):not([type=checkbox]), .wp-block-post-comments-form .comment-form textarea {line-height: inherit;} .wp-block-post-comments-form .form-submit {margin-bottom: 0;}"
|
||||
},
|
||||
"core/post-comments-link": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)"
|
||||
}
|
||||
},
|
||||
"core/post-date": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)"
|
||||
}
|
||||
},
|
||||
"core/post-excerpt": {
|
||||
"css": ".wp-block-post-excerpt .wp-block-post-excerpt__excerpt{line-height: inherit;}"
|
||||
},
|
||||
"core/post-navigation-link": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/post-terms": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)"
|
||||
}
|
||||
},
|
||||
"core/post-time-to-read": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)"
|
||||
}
|
||||
},
|
||||
"core/post-title": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--xx-large)"
|
||||
}
|
||||
},
|
||||
"core/pullquote": {
|
||||
"border": {
|
||||
"color": "var(--wp--preset--color--contrast)",
|
||||
"style": "solid",
|
||||
"width": "1px 0"
|
||||
},
|
||||
"css": ".wp-block-pullquote cite {display:block;margin-top: var(--wp--preset--spacing--50)}",
|
||||
"spacing": {
|
||||
"padding": "var(--wp--preset--spacing--50)"
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--large)",
|
||||
"fontStyle": "italic"
|
||||
}
|
||||
},
|
||||
"core/query-pagination": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline solid"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)"
|
||||
}
|
||||
},
|
||||
"core/query-title": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--large)"
|
||||
}
|
||||
},
|
||||
"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": "italic"
|
||||
},
|
||||
"variations": {
|
||||
"plain": {
|
||||
"border": {
|
||||
"width": "0"
|
||||
},
|
||||
"spacing": {
|
||||
"padding": {
|
||||
"left": "0"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontStyle": "normal"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/read-more": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)"
|
||||
}
|
||||
},
|
||||
"core/rss": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/search": {
|
||||
"css": ".wp-block-search__button-inside .wp-block-search__inside-wrapper {padding: 2px;} :where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) {background-color: var(--wp--preset--color--contrast); border-color: #949494;} :where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input {padding: 0 0 0 var(--wp--preset--spacing--40);} :where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-element-button {padding-right: var(--wp--preset--spacing--40);} :where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-element-button, :where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-element-button {background-color: var(--wp--preset--color--contrast); color: var(--wp--preset--color--base);} :where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-element-button:hover, :where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-element-button:focus {background-color: var(--wp--preset--color--contrast);}",
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"lineHeight": "1"
|
||||
}
|
||||
},
|
||||
"core/separator": {
|
||||
"border": {
|
||||
"color": "currentColor",
|
||||
"style": "solid",
|
||||
"width": "0 0 1px 0"
|
||||
},
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--contrast)"
|
||||
}
|
||||
},
|
||||
"core/site-tagline": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--medium)"
|
||||
}
|
||||
},
|
||||
"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": {
|
||||
"fontSize": "var(--wp--preset--font-size--medium)",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "600",
|
||||
"lineHeight": "calc(1em + 0.5rem)"
|
||||
}
|
||||
},
|
||||
"core/social-links": {
|
||||
"spacing": {
|
||||
"blockGap": {
|
||||
"left": "var(--wp--preset--spacing--40)",
|
||||
"top": "var(--wp--preset--spacing--40)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/table": {
|
||||
"css": " + .wp-element-caption {text-align:center;}"
|
||||
},
|
||||
"core/table-of-contents": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/tag-cloud": {
|
||||
"css": ".wp-block-tag-cloud.is-style-outline a {border-radius: 999px; padding: 0 1rem;} .wp-block-tag-cloud.is-style-outline a:hover {color: var(--wp--preset--color--base); background-color: var(--wp--preset--color--contrast);}"
|
||||
},
|
||||
"core/term-description": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"color": {
|
||||
"background": "var(--wp--preset--color--base)",
|
||||
"text": "var(--wp--preset--color--contrast)"
|
||||
},
|
||||
"elements": {
|
||||
"button": {
|
||||
":active": {
|
||||
"color": {
|
||||
"background": "var(--wp--preset--color--primary)",
|
||||
"text": "var(--wp--preset--color--base)"
|
||||
}
|
||||
},
|
||||
":focus": {
|
||||
"color": {
|
||||
"background": "var(--wp--preset--color--primary)",
|
||||
"text": "var(--wp--preset--color--base)"
|
||||
}
|
||||
},
|
||||
":hover": {
|
||||
"color": {
|
||||
"background": "var(--wp--preset--color--primary)",
|
||||
"text": "var(--wp--preset--color--base)"
|
||||
}
|
||||
},
|
||||
"border": {
|
||||
"radius": "2px"
|
||||
},
|
||||
"color": {
|
||||
"background": "var(--wp--preset--color--contrast)",
|
||||
"text": "var(--wp--preset--color--base)"
|
||||
},
|
||||
"spacing": {
|
||||
"padding": {
|
||||
"bottom": "16px",
|
||||
"left": "28px",
|
||||
"right": "28px",
|
||||
"top": "18px"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"fontWeight": "600",
|
||||
"letterSpacing": "0.04em",
|
||||
"lineHeight": "1",
|
||||
"textTransform": "uppercase"
|
||||
}
|
||||
},
|
||||
"caption": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--contrast)"
|
||||
},
|
||||
"spacing": {
|
||||
"margin": {
|
||||
"bottom": "var(--wp--preset--spacing--50)",
|
||||
"top": "var(--wp--preset--spacing--30)"
|
||||
},
|
||||
"padding": {
|
||||
"left": "var(--wp--preset--spacing--50)",
|
||||
"right": "var(--wp--preset--spacing--50)"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)"
|
||||
}
|
||||
},
|
||||
"h1": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--xx-large)",
|
||||
"lineHeight": "1.157407407"
|
||||
}
|
||||
},
|
||||
"h2": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--x-large)",
|
||||
"lineHeight": "1.215277778"
|
||||
}
|
||||
},
|
||||
"h3": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--large)",
|
||||
"lineHeight": "1.25"
|
||||
}
|
||||
},
|
||||
"h4": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--medium)",
|
||||
"lineHeight": "calc(1em + 0.5rem)"
|
||||
}
|
||||
},
|
||||
"h5": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"lineHeight": "calc(1em + 0.5rem)",
|
||||
"textTransform": "uppercase"
|
||||
}
|
||||
},
|
||||
"h6": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"lineHeight": "calc(1em + 0.5rem)"
|
||||
}
|
||||
},
|
||||
"heading": {
|
||||
"typography": {
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "600",
|
||||
"lineHeight": "1.2"
|
||||
}
|
||||
},
|
||||
"link": {
|
||||
":hover": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--primary)"
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
},
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--contrast)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"spacing": {
|
||||
"blockGap": "var(--wp--preset--spacing--50)",
|
||||
"padding": {
|
||||
"bottom": "0",
|
||||
"left": "var(--wp--preset--spacing--50)",
|
||||
"right": "var(--wp--preset--spacing--50)",
|
||||
"top": "0"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--inter)",
|
||||
"fontSize": "var(--wp--preset--font-size--medium)",
|
||||
"fontWeight": "600",
|
||||
"lineHeight": "1.5"
|
||||
}
|
||||
},
|
||||
"templateParts": [
|
||||
{
|
||||
"area": "comments",
|
||||
"name": "comments"
|
||||
},
|
||||
{
|
||||
"area": "header",
|
||||
"name": "header"
|
||||
},
|
||||
{
|
||||
"area": "footer",
|
||||
"name": "footer"
|
||||
}
|
||||
],
|
||||
"version": 2,
|
||||
"$schema": "https://schemas.wp.org/trunk/theme.json"
|
||||
}
|
6636
package-lock.json
generated
6636
package-lock.json
generated
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue