Hola: add theme (#7927)
* Hola: add theme * Update readme file. * Fix readme --------- Co-authored-by: Henrique 'Foca' Iamarino <henriquefoca@gmail.com> Co-authored-by: jasmussen <joen@automattic.com>
This commit is contained in:
parent
72c252146d
commit
a856023766
47 changed files with 1922 additions and 0 deletions
BIN
hola/assets/fonts/crimson-pro_italic_400.ttf
Normal file
BIN
hola/assets/fonts/crimson-pro_italic_400.ttf
Normal file
Binary file not shown.
BIN
hola/assets/fonts/crimson-pro_italic_600.ttf
Normal file
BIN
hola/assets/fonts/crimson-pro_italic_600.ttf
Normal file
Binary file not shown.
BIN
hola/assets/fonts/crimson-pro_italic_700.ttf
Normal file
BIN
hola/assets/fonts/crimson-pro_italic_700.ttf
Normal file
Binary file not shown.
BIN
hola/assets/fonts/crimson-pro_normal_400.ttf
Normal file
BIN
hola/assets/fonts/crimson-pro_normal_400.ttf
Normal file
Binary file not shown.
BIN
hola/assets/fonts/crimson-pro_normal_600.ttf
Normal file
BIN
hola/assets/fonts/crimson-pro_normal_600.ttf
Normal file
Binary file not shown.
BIN
hola/assets/fonts/crimson-pro_normal_700.ttf
Normal file
BIN
hola/assets/fonts/crimson-pro_normal_700.ttf
Normal file
Binary file not shown.
BIN
hola/assets/fonts/manrope-normal-400.woff2
Normal file
BIN
hola/assets/fonts/manrope-normal-400.woff2
Normal file
Binary file not shown.
BIN
hola/assets/fonts/manrope-normal-700.woff2
Normal file
BIN
hola/assets/fonts/manrope-normal-700.woff2
Normal file
Binary file not shown.
BIN
hola/assets/fonts/plus-jakarta-sans_italic_400.ttf
Normal file
BIN
hola/assets/fonts/plus-jakarta-sans_italic_400.ttf
Normal file
Binary file not shown.
BIN
hola/assets/fonts/plus-jakarta-sans_italic_600.ttf
Normal file
BIN
hola/assets/fonts/plus-jakarta-sans_italic_600.ttf
Normal file
Binary file not shown.
BIN
hola/assets/fonts/plus-jakarta-sans_italic_700.ttf
Normal file
BIN
hola/assets/fonts/plus-jakarta-sans_italic_700.ttf
Normal file
Binary file not shown.
BIN
hola/assets/fonts/plus-jakarta-sans_normal_400.ttf
Normal file
BIN
hola/assets/fonts/plus-jakarta-sans_normal_400.ttf
Normal file
Binary file not shown.
BIN
hola/assets/fonts/plus-jakarta-sans_normal_600.ttf
Normal file
BIN
hola/assets/fonts/plus-jakarta-sans_normal_600.ttf
Normal file
Binary file not shown.
BIN
hola/assets/fonts/plus-jakarta-sans_normal_700.ttf
Normal file
BIN
hola/assets/fonts/plus-jakarta-sans_normal_700.ttf
Normal file
Binary file not shown.
BIN
hola/assets/fonts/texturina_italic_400.ttf
Normal file
BIN
hola/assets/fonts/texturina_italic_400.ttf
Normal file
Binary file not shown.
BIN
hola/assets/fonts/texturina_italic_600.ttf
Normal file
BIN
hola/assets/fonts/texturina_italic_600.ttf
Normal file
Binary file not shown.
BIN
hola/assets/fonts/texturina_italic_700.ttf
Normal file
BIN
hola/assets/fonts/texturina_italic_700.ttf
Normal file
Binary file not shown.
BIN
hola/assets/fonts/texturina_normal_400.ttf
Normal file
BIN
hola/assets/fonts/texturina_normal_400.ttf
Normal file
Binary file not shown.
BIN
hola/assets/fonts/texturina_normal_600.ttf
Normal file
BIN
hola/assets/fonts/texturina_normal_600.ttf
Normal file
Binary file not shown.
BIN
hola/assets/fonts/texturina_normal_700.ttf
Normal file
BIN
hola/assets/fonts/texturina_normal_700.ttf
Normal file
Binary file not shown.
60
hola/functions.php
Normal file
60
hola/functions.php
Normal file
|
@ -0,0 +1,60 @@
|
|||
<?php
|
||||
/**
|
||||
* hola functions and definitions
|
||||
*
|
||||
* @link https://developer.wordpress.org/themes/basics/theme-functions/
|
||||
*
|
||||
* @package hola
|
||||
* @since hola 1.0
|
||||
*/
|
||||
|
||||
|
||||
if ( ! function_exists( 'hola_support' ) ) :
|
||||
|
||||
/**
|
||||
* Sets up theme defaults and registers support for various WordPress features.
|
||||
*
|
||||
* @since hola 1.0
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function hola_support() {
|
||||
|
||||
// Enqueue editor styles.
|
||||
add_editor_style( 'style.css' );
|
||||
|
||||
// Make theme available for translation.
|
||||
load_theme_textdomain( 'hola' );
|
||||
}
|
||||
|
||||
endif;
|
||||
|
||||
add_action( 'after_setup_theme', 'hola_support' );
|
||||
|
||||
if ( ! function_exists( 'hola_styles' ) ) :
|
||||
|
||||
/**
|
||||
* Enqueue styles.
|
||||
*
|
||||
* @since hola 1.0
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function hola_styles() {
|
||||
|
||||
// Register theme stylesheet.
|
||||
wp_register_style(
|
||||
'hola-style',
|
||||
get_stylesheet_directory_uri() . '/style.css',
|
||||
array(),
|
||||
wp_get_theme()->get( 'Version' )
|
||||
);
|
||||
|
||||
// Enqueue theme stylesheet.
|
||||
wp_enqueue_style( 'hola-style' );
|
||||
|
||||
}
|
||||
|
||||
endif;
|
||||
|
||||
add_action( 'wp_enqueue_scripts', 'hola_styles' );
|
1
hola/parts/footer.html
Normal file
1
hola/parts/footer.html
Normal file
|
@ -0,0 +1 @@
|
|||
<!-- wp:pattern {"slug":"hola/footer"} /-->
|
1
hola/parts/header-minimal.html
Normal file
1
hola/parts/header-minimal.html
Normal file
|
@ -0,0 +1 @@
|
|||
<!-- wp:pattern {"slug":"hola/header-minimal"} /-->
|
13
hola/parts/header.html
Normal file
13
hola/parts/header.html
Normal file
|
@ -0,0 +1,13 @@
|
|||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"0","bottom":"0"},"padding":{"top":"var:preset|spacing|50","right":"var:preset|spacing|50","left":"var:preset|spacing|50"}}},"gradient":"default-gradient","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group has-default-gradient-gradient-background has-background" style="margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)"><!-- wp:group {"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group"><!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|40"}},"layout":{"type":"flex","justifyContent":"left","verticalAlignment":"top"}} -->
|
||||
<div class="wp-block-group"><!-- wp:site-logo {"width":80,"shouldSyncIcon":true} /-->
|
||||
|
||||
<!-- wp:group {"style":{"layout":{"selfStretch":"fill","flexSize":null},"elements":{"link":{"color":{"text":"var:preset|color|base"}}},"spacing":{"blockGap":"var:preset|spacing|30","margin":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}}},"textColor":"base","layout":{"type":"flex","flexWrap":"nowrap"}} -->
|
||||
<div class="wp-block-group has-base-color has-text-color has-link-color" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)"><!-- wp:site-title /-->
|
||||
|
||||
<!-- wp:site-tagline /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
1
hola/parts/post-meta.html
Normal file
1
hola/parts/post-meta.html
Normal file
|
@ -0,0 +1 @@
|
|||
<!-- wp:pattern {"slug":"hola/post-meta"} /-->
|
39
hola/patterns/404.php
Normal file
39
hola/patterns/404.php
Normal file
|
@ -0,0 +1,39 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: 404
|
||||
* Slug: hola/404
|
||||
* Categories: hidden
|
||||
* Inserter: no
|
||||
*/
|
||||
?>
|
||||
<!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0","margin":{"top":"0","bottom":"0"}},"border":{"left":{"width":"5px"},"top":[],"right":{"width":"5px"},"bottom":{"width":"5px"}},"dimensions":{"minHeight":"100vh"}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignfull" style="border-right-width:5px;border-bottom-width:5px;border-left-width:5px;min-height:100vh;margin-top:0;margin-bottom:0"><!-- wp:template-part {"slug":"header","area":"header","align":"full"} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|50","left":"var:preset|spacing|50"}}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group" style="padding-right:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)"><!-- wp:spacer {"height":"var:preset|spacing|70"} -->
|
||||
<div style="height:var(--wp--preset--spacing--70)" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer -->
|
||||
|
||||
<!-- wp:group {"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group"><!-- wp:heading {"textAlign":"left","level":1} -->
|
||||
<h1 class="wp-block-heading has-text-align-left" id="oops-that-page-can-t-be-found"><?php echo __('Oops! That page can’t be found.', 'hola');?></h1>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><?php echo __('It looks like nothing was found at this location.<br>Maybe try a search?', 'hola');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:spacer {"height":"var:preset|spacing|30"} -->
|
||||
<div style="height:var(--wp--preset--spacing--30)" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer -->
|
||||
|
||||
<!-- wp:search {"label":"Search","showLabel":false,"width":100,"widthUnit":"%","buttonPosition":"button-inside","buttonUseIcon":true} /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:spacer {"height":"var:preset|spacing|70"} -->
|
||||
<div style="height:var(--wp--preset--spacing--70)" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /--></div>
|
||||
<!-- /wp:group -->
|
52
hola/patterns/comments.php
Normal file
52
hola/patterns/comments.php
Normal file
|
@ -0,0 +1,52 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: Comments
|
||||
* slug: hola/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 -->
|
49
hola/patterns/footer.php
Normal file
49
hola/patterns/footer.php
Normal file
|
@ -0,0 +1,49 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: footer
|
||||
* Slug: hola/footer
|
||||
* Categories: hidden
|
||||
* Inserter: no
|
||||
*/
|
||||
?>
|
||||
<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|50","padding":{"bottom":"var:preset|spacing|70","right":"var:preset|spacing|50","left":"var:preset|spacing|50"},"margin":{"top":"0","bottom":"0"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="margin-top:0;margin-bottom:0;padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--70);padding-left:var(--wp--preset--spacing--50)"><!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|20","padding":{"top":"var:preset|spacing|40"}},"border":{"top":{"width":"1px","style":"dotted"}}},"layout":{"type":"flex","flexWrap":"nowrap","verticalAlignment":"top","justifyContent":"left"}} -->
|
||||
<div class="wp-block-group" style="border-top-style:dotted;border-top-width:1px;padding-top:var(--wp--preset--spacing--40)"><!-- wp:paragraph {"align":"left","style":{"layout":{"selfStretch":"fit","flexSize":null}},"fontSize":"small"} -->
|
||||
<p class="has-text-align-left has-small-font-size"><?php echo __('<a href="#" target="_blank" rel="noreferrer noopener">Tumblr</a>', 'hola');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"align":"left","style":{"layout":{"selfStretch":"fit","flexSize":null}},"fontSize":"small"} -->
|
||||
<p class="has-text-align-left has-small-font-size"><?php echo __('·', 'hola');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"align":"left","style":{"layout":{"selfStretch":"fit","flexSize":null}},"fontSize":"small"} -->
|
||||
<p class="has-text-align-left has-small-font-size"><?php echo __('<a href="#" target="_blank" rel="noreferrer noopener">Behance</a>', 'hola');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"align":"left","style":{"layout":{"selfStretch":"fit","flexSize":null}},"fontSize":"small"} -->
|
||||
<p class="has-text-align-left has-small-font-size"><?php echo __('·', 'hola');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"align":"left","style":{"layout":{"selfStretch":"fit","flexSize":null}},"fontSize":"small"} -->
|
||||
<p class="has-text-align-left has-small-font-size"><?php echo __('<a href="#" target="_blank" rel="noreferrer noopener">Mastodon</a>', 'hola');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"align":"left","style":{"layout":{"selfStretch":"fit","flexSize":null}},"fontSize":"small"} -->
|
||||
<p class="has-text-align-left has-small-font-size"><?php echo __('·', 'hola');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"align":"left","style":{"layout":{"selfStretch":"fit","flexSize":null}},"fontSize":"small"} -->
|
||||
<p class="has-text-align-left has-small-font-size"><?php echo __('<a href="#" target="_blank" rel="noreferrer noopener">Linkedin</a>', 'hola');?></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"layout":{"type":"flex","flexWrap":"wrap","justifyContent":"space-between"}} -->
|
||||
<div class="wp-block-group"><!-- wp:paragraph {"align":"left","style":{"layout":{"selfStretch":"fill","flexSize":null}},"fontSize":"small"} -->
|
||||
<p class="has-text-align-left has-small-font-size"><?php echo __('Get in <a href="#" data-type="mailto" data-id="mailto:">touch</a>.', 'hola');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"align":"left","fontSize":"small"} -->
|
||||
<p class="has-text-align-left has-small-font-size"><?php echo __('Designed with <a href="#" target="_blank" rel="noreferrer noopener nofollow">WordPress</a>', 'hola');?></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
19
hola/patterns/header-large.php
Normal file
19
hola/patterns/header-large.php
Normal file
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: header-large
|
||||
* Slug: hola/header-large
|
||||
* Categories: hidden
|
||||
* Inserter: no
|
||||
*/
|
||||
?>
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"0","bottom":"0"},"margin":{"top":"0","bottom":"0"}}},"backgroundColor":"contrast","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group has-contrast-background-color has-background" style="margin-top:0;margin-bottom:0;padding-top:0;padding-bottom:0"><!-- wp:cover {"url":"<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/header-gradient.png","id":320,"dimRatio":0,"isUserOverlayColor":true,"minHeight":160,"isDark":false,"align":"full","style":{"color":[],"spacing":{"margin":{"top":"0","bottom":"0"}},"border":{"left":{"color":"var:preset|color|contrast","width":"3px"},"top":[],"right":{"color":"var:preset|color|contrast","width":"3px"},"bottom":[]}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-cover alignfull is-light" style="border-right-color:var(--wp--preset--color--contrast);border-right-width:3px;border-left-color:var(--wp--preset--color--contrast);border-left-width:3px;margin-top:0;margin-bottom:0;min-height:160px"><span aria-hidden="true" class="wp-block-cover__background has-background-dim-0 has-background-dim"></span><img class="wp-block-cover__image-background wp-image-320" alt="" src="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/header-gradient.png" data-object-fit="cover"/><div class="wp-block-cover__inner-container"><!-- wp:group {"style":{"elements":{"link":{"color":{"text":"var:preset|color|base"}}}},"textColor":"base","layout":{"type":"flex","verticalAlignment":"center"}} -->
|
||||
<div class="wp-block-group has-base-color has-text-color has-link-color"><!-- wp:site-logo {"width":88,"shouldSyncIcon":true,"style":{"color":[]}} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|20","bottom":"var:preset|spacing|20","left":"var:preset|spacing|30","right":"var:preset|spacing|30"}},"border":{"radius":"4px","width":"1px"},"elements":{"link":{"color":{"text":"var:preset|color|contrast"}}}},"backgroundColor":"base","textColor":"contrast","layout":{"type":"flex","flexWrap":"nowrap"}} -->
|
||||
<div class="wp-block-group has-contrast-color has-base-background-color has-text-color has-background has-link-color" style="border-width:1px;border-radius:4px;padding-top:var(--wp--preset--spacing--20);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--20);padding-left:var(--wp--preset--spacing--30)"><!-- wp:site-title {"style":{"typography":{"textTransform":"uppercase"},"elements":{"link":{"color":{"text":"var:preset|color|contrast"}}}},"textColor":"contrast"} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div></div>
|
||||
<!-- /wp:cover --></div>
|
||||
<!-- /wp:group -->
|
23
hola/patterns/header-minimal.php
Normal file
23
hola/patterns/header-minimal.php
Normal file
|
@ -0,0 +1,23 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: header-minimal
|
||||
* Slug: hola/header-minimal
|
||||
* Categories: hidden
|
||||
* Inserter: no
|
||||
*/
|
||||
?>
|
||||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"0","bottom":"0"},"padding":{"top":"var:preset|spacing|50"}}},"backgroundColor":"contrast","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group has-contrast-background-color has-background" style="margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--50)"><!-- wp:group {"align":"full","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignfull"><!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|40"}},"layout":{"type":"flex","justifyContent":"left","verticalAlignment":"top"}} -->
|
||||
<div class="wp-block-group"><!-- wp:group {"style":{"layout":{"selfStretch":"fill","flexSize":null},"elements":{"link":{"color":{"text":"var:preset|color|base"}}},"spacing":{"blockGap":"var:preset|spacing|30","margin":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}}},"textColor":"base","layout":{"type":"flex","flexWrap":"nowrap"}} -->
|
||||
<div class="wp-block-group has-base-color has-text-color has-link-color" style="margin-top:var(--wp--preset--spacing--50);margin-bottom:var(--wp--preset--spacing--50)"><!-- wp:site-title {"fontSize":"medium"} /-->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><?php echo __('—', 'hola');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:site-tagline {"fontSize":"medium"} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
10
hola/patterns/hidden-no-results-content.php
Normal file
10
hola/patterns/hidden-no-results-content.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: Hidden No Results Content
|
||||
* Slug: hola/hidden-no-results-content
|
||||
* Inserter: no
|
||||
*/
|
||||
?>
|
||||
<!-- wp:paragraph -->
|
||||
<p><?php echo esc_html_x( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'Message explaining that there are no results returned from a search', 'hola' ); ?></p>
|
||||
<!-- /wp:paragraph -->
|
37
hola/patterns/post-meta.php
Normal file
37
hola/patterns/post-meta.php
Normal file
|
@ -0,0 +1,37 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: post-meta
|
||||
* Slug: hola/post-meta
|
||||
* Categories: hidden
|
||||
* Inserter: no
|
||||
*/
|
||||
?>
|
||||
<!-- wp:group {"style":{"spacing":{"blockGap":"0"}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group"><!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|40","bottom":"var:preset|spacing|40"}},"border":{"top":{"color":"var:preset|color|tertiary","style":"dotted","width":"1px"},"right":[],"bottom":[],"left":[]}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="border-top-color:var(--wp--preset--color--tertiary);border-top-style:dotted;border-top-width:1px;padding-top:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40)"><!-- wp:columns {"isStackedOnMobile":false,"style":{"spacing":{"blockGap":{"top":"0"}}}} -->
|
||||
<div class="wp-block-columns is-not-stacked-on-mobile"><!-- wp:column {"width":"15%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:15%"><!-- wp:paragraph {"style":{"typography":{"fontStyle":"normal","fontWeight":"700"}},"fontSize":"small"} -->
|
||||
<p class="has-small-font-size" style="font-style:normal;font-weight:700"><?php echo __('Tags:', 'hola');?></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"85%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:85%"><!-- wp:post-terms {"term":"post_tag"} /--></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|40","bottom":"var:preset|spacing|40"}},"border":{"top":{"color":"var:preset|color|tertiary","style":"dotted","width":"1px"},"right":[],"bottom":[],"left":[]}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="border-top-color:var(--wp--preset--color--tertiary);border-top-style:dotted;border-top-width:1px;padding-top:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40)"><!-- wp:columns {"isStackedOnMobile":false,"style":{"spacing":{"blockGap":{"top":"0"}}}} -->
|
||||
<div class="wp-block-columns is-not-stacked-on-mobile"><!-- wp:column {"width":"15%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:15%"><!-- wp:paragraph {"style":{"typography":{"fontStyle":"normal","fontWeight":"700"}},"fontSize":"small"} -->
|
||||
<p class="has-small-font-size" style="font-style:normal;font-weight:700"><?php echo __('Date:', 'hola');?></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"85%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:85%"><!-- wp:post-date {"isLink":true,"fontSize":"small"} /--></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
123
hola/patterns/single.php
Normal file
123
hola/patterns/single.php
Normal file
|
@ -0,0 +1,123 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: single
|
||||
* Slug: hola/single
|
||||
* Categories: hidden
|
||||
* Inserter: no
|
||||
*/
|
||||
?>
|
||||
<!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0","margin":{"top":"0","bottom":"0"}},"border":{"left":{"width":"5px"},"top":[],"right":{"width":"5px"},"bottom":{"width":"5px"}},"dimensions":{"minHeight":"100vh"}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignfull" style="border-right-width:5px;border-bottom-width:5px;border-left-width:5px;min-height:100vh;margin-top:0;margin-bottom:0"><!-- wp:template-part {"slug":"header","area":"header","align":"full"} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|50","left":"var:preset|spacing|50"}}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group" style="padding-right:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)"><!-- wp:spacer {"height":"var:preset|spacing|70"} -->
|
||||
<div style="height:var(--wp--preset--spacing--70)" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer -->
|
||||
|
||||
<!-- wp:group {"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group"><!-- wp:post-featured-image {"aspectRatio":"auto","style":{"color":[]}} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|60","bottom":"var:preset|spacing|60"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="margin-top:var(--wp--preset--spacing--60);margin-bottom:var(--wp--preset--spacing--60)"><!-- wp:post-title {"level":1} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|30","bottom":"var:preset|spacing|30"},"blockGap":"var:preset|spacing|20"}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
|
||||
<div class="wp-block-group" style="margin-top:var(--wp--preset--spacing--30);margin-bottom:var(--wp--preset--spacing--30)"><!-- wp:paragraph {"fontSize":"small"} -->
|
||||
<p class="has-small-font-size"><?php echo __('Written by', 'hola');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:post-author {"showAvatar":false,"byline":""} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"tagName":"main","lock":{"move":false,"remove":false}} -->
|
||||
<main class="wp-block-group"><!-- wp:post-content {"lock":{"move":false,"remove":false},"style":{"spacing":{"blockGap":"var:preset|spacing|40"}},"layout":{"type":"constrained"}} /-->
|
||||
|
||||
<!-- wp:spacer {"height":"var:preset|spacing|70"} -->
|
||||
<div style="height:var(--wp--preset--spacing--70)" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"blockGap":"0"}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group"><!-- wp:template-part {"slug":"post-meta"} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|40","bottom":"var:preset|spacing|40"}},"border":{"top":{"color":"var:preset|color|tertiary","style":"dotted","width":"1px"},"right":[],"bottom":[],"left":[]}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="border-top-color:var(--wp--preset--color--tertiary);border-top-style:dotted;border-top-width:1px;padding-top:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40)"><!-- wp:columns {"isStackedOnMobile":false,"style":{"spacing":{"blockGap":{"top":"0"}}}} -->
|
||||
<div class="wp-block-columns is-not-stacked-on-mobile"><!-- wp:column {"width":"15%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:15%"><!-- wp:paragraph {"style":{"typography":{"fontStyle":"normal","fontWeight":"700"}},"fontSize":"small"} -->
|
||||
<p class="has-small-font-size" style="font-style:normal;font-weight:700"><?php echo __('Up Next:', 'hola');?></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"85%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:85%"><!-- wp:post-navigation-link {"showTitle":true} /--></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|40","bottom":"var:preset|spacing|40"}},"border":{"top":{"color":"var:preset|color|tertiary","style":"dotted","width":"1px"},"right":[],"bottom":[],"left":[]}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="border-top-color:var(--wp--preset--color--tertiary);border-top-style:dotted;border-top-width:1px;padding-top:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40)"><!-- wp:columns {"isStackedOnMobile":false,"style":{"spacing":{"blockGap":{"top":"0"}}}} -->
|
||||
<div class="wp-block-columns is-not-stacked-on-mobile"><!-- wp:column {"width":"15%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:15%"><!-- wp:paragraph {"style":{"typography":{"fontStyle":"normal","fontWeight":"700"}},"fontSize":"small"} -->
|
||||
<p class="has-small-font-size" style="font-style:normal;font-weight:700"><?php echo __('Before:', 'hola');?></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"85%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:85%"><!-- wp:post-navigation-link {"type":"previous","showTitle":true} /--></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></main>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:spacer {"height":"var:preset|spacing|50"} -->
|
||||
<div style="height:var(--wp--preset--spacing--50)" 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 {"showCommentsCount":false} /-->
|
||||
|
||||
<!-- wp:comment-template -->
|
||||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"0","bottom":"3vh"}}}} -->
|
||||
<div class="wp-block-group" style="margin-top:0;margin-bottom:3vh"><!-- wp:group {"style":{"spacing":{"blockGap":"0.5em"}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
|
||||
<div class="wp-block-group"><!-- wp:avatar {"size":40,"style":{"color":[]}} /-->
|
||||
|
||||
<!-- wp:group -->
|
||||
<div class="wp-block-group"><!-- wp:comment-author-name /-->
|
||||
|
||||
<!-- wp:group {"layout":{"type":"flex"}} -->
|
||||
<div class="wp-block-group"><!-- 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 {"label":"Older"} /-->
|
||||
|
||||
<!-- wp:comments-pagination-numbers /-->
|
||||
|
||||
<!-- wp:comments-pagination-next {"label":"Newer"} /-->
|
||||
<!-- /wp:comments-pagination -->
|
||||
|
||||
<!-- wp:spacer {"height":"3vh"} -->
|
||||
<div style="height:3vh" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer -->
|
||||
|
||||
<!-- wp:post-comments-form {"style":{"spacing":{"margin":{"top":"0","bottom":"0"}}}} /--></div>
|
||||
<!-- /wp:comments --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:spacer {"height":"var:preset|spacing|70"} -->
|
||||
<div style="height:var(--wp--preset--spacing--70)" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /--></div>
|
||||
<!-- /wp:group -->
|
64
hola/readme.txt
Normal file
64
hola/readme.txt
Normal file
|
@ -0,0 +1,64 @@
|
|||
== Hola ==
|
||||
|
||||
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 ==
|
||||
|
||||
Hola is a text-only blog design, a new interpretation of the theme 'Hey' with diverse style variations.
|
||||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 =
|
||||
* Initial release
|
||||
|
||||
|
||||
== Copyright ==
|
||||
|
||||
Hola WordPress Theme, (C) 2024 Automattic
|
||||
Hola 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.
|
||||
|
||||
|
||||
Hola is based on hola-hola (https://themeshaper.com/hola/), (C) Automattic, [GPLv2 or later](http://www.gnu.org/licenses/gpl-2.0.html)
|
||||
|
||||
|
||||
== Images ==
|
||||
Generated with AI on Midjourney, released under the CC0 license.
|
||||
|
||||
|
||||
== Fonts ==
|
||||
|
||||
Plus Jakarta Sans
|
||||
Copyright 2020 The Plus Jakarta Sans Project Authors (https://github.com/tokotype/PlusJakartaSans)
|
||||
Source: https://www.tokotype.com
|
||||
License: This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL
|
||||
|
||||
Crimson Pro
|
||||
Copyright 2018 The Crimson Pro Project Authors (https://github.com/Fonthausen/CrimsonPro)
|
||||
Source: http://www.baronvonfonthausen.com/
|
||||
License: This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL
|
||||
|
||||
Texturina
|
||||
Copyright 2020 The Texturina Project Authors (https://github.com/Omnibus-Type/Texturina)
|
||||
Source: http://www.omnibus-type.com/
|
||||
License: This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL
|
||||
|
||||
Manrope
|
||||
Copyright 2019 The Manrope Project Authors (https://github.com/sharanda/manrope)
|
||||
Source: http://gent.media
|
||||
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
|
BIN
hola/screenshot.png
Normal file
BIN
hola/screenshot.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 81 KiB |
40
hola/style.css
Normal file
40
hola/style.css
Normal file
|
@ -0,0 +1,40 @@
|
|||
/*
|
||||
Theme Name: Hola
|
||||
Theme URI: https://themeshaper.com/hola/
|
||||
Author: Automattic
|
||||
Author URI: https://automattic.com
|
||||
Description: Hola is a text-only blog design, a new interpretation of the theme ‘Hey’ with diverse style variations.
|
||||
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: hola
|
||||
Tags: blog, one-column, two-columns, block-patterns, block-styles, buddypress, custom-colors, custom-logo, custom-menu, editor-style, featured-images, flexible-header, footer-widgets, 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--base);
|
||||
border-color: var(--wp--preset--color--secondary);
|
||||
}
|
||||
|
||||
/*
|
||||
* Link styles
|
||||
* https://github.com/WordPress/gutenberg/issues/42319
|
||||
*/
|
||||
a {
|
||||
text-decoration-thickness: .0625em !important;
|
||||
text-underline-offset: .15em;
|
||||
}
|
116
hola/styles/avocado.json
Normal file
116
hola/styles/avocado.json
Normal file
|
@ -0,0 +1,116 @@
|
|||
{
|
||||
"settings": {
|
||||
"color": {
|
||||
"palette": [
|
||||
{
|
||||
"color": "#f1f1f1",
|
||||
"name": "Base",
|
||||
"slug": "base"
|
||||
},
|
||||
{
|
||||
"color": "#1f4733",
|
||||
"name": "Contrast",
|
||||
"slug": "contrast"
|
||||
},
|
||||
{
|
||||
"color": "#1f4733",
|
||||
"name": "Primary",
|
||||
"slug": "primary"
|
||||
},
|
||||
{
|
||||
"color": "#f1f1f1",
|
||||
"name": "Secondary",
|
||||
"slug": "secondary"
|
||||
},
|
||||
{
|
||||
"color": "#183526",
|
||||
"name": "Tertiary",
|
||||
"slug": "tertiary"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"styles": {
|
||||
"blocks": {
|
||||
"core/avatar": {
|
||||
"filter": {
|
||||
"duotone": "var(--wp--preset--duotone--avocado)"
|
||||
}
|
||||
},
|
||||
"core/cover": {
|
||||
"filter": {
|
||||
"duotone": "var(--wp--preset--duotone--avocado)"
|
||||
}
|
||||
},
|
||||
"core/post-date": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--crimson-pro)"
|
||||
}
|
||||
},
|
||||
"core/post-featured-image": {
|
||||
"filter": {
|
||||
"duotone": "var(--wp--preset--duotone--avocado)"
|
||||
}
|
||||
},
|
||||
"core/query-pagination": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--crimson-pro)"
|
||||
}
|
||||
},
|
||||
"core/site-logo": {
|
||||
"filter": {
|
||||
"duotone": "var(--wp--preset--duotone--avocado)"
|
||||
}
|
||||
},
|
||||
"core/site-title": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--crimson-pro)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"elements": {
|
||||
"h1": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--crimson-pro)"
|
||||
}
|
||||
},
|
||||
"h2": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--crimson-pro)"
|
||||
}
|
||||
},
|
||||
"h3": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--crimson-pro)"
|
||||
}
|
||||
},
|
||||
"h4": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--crimson-pro)"
|
||||
}
|
||||
},
|
||||
"h5": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--crimson-pro)"
|
||||
}
|
||||
},
|
||||
"h6": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--crimson-pro)"
|
||||
}
|
||||
},
|
||||
"heading": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--crimson-pro)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--crimson-pro)",
|
||||
"letterSpacing": "0rem"
|
||||
}
|
||||
},
|
||||
"title": "Avocado",
|
||||
"version": 2,
|
||||
"$schema": "https://schemas.wp.org/trunk/theme.json"
|
||||
}
|
116
hola/styles/mattone.json
Normal file
116
hola/styles/mattone.json
Normal file
|
@ -0,0 +1,116 @@
|
|||
{
|
||||
"settings": {
|
||||
"color": {
|
||||
"palette": [
|
||||
{
|
||||
"color": "#fafafa",
|
||||
"name": "Base",
|
||||
"slug": "base"
|
||||
},
|
||||
{
|
||||
"color": "#ba452e",
|
||||
"name": "Contrast",
|
||||
"slug": "contrast"
|
||||
},
|
||||
{
|
||||
"color": "#ba452e",
|
||||
"name": "Primary",
|
||||
"slug": "primary"
|
||||
},
|
||||
{
|
||||
"color": "#fafafa",
|
||||
"name": "Secondary",
|
||||
"slug": "secondary"
|
||||
},
|
||||
{
|
||||
"color": "#a33d29",
|
||||
"name": "Tertiary",
|
||||
"slug": "tertiary"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"styles": {
|
||||
"blocks": {
|
||||
"core/avatar": {
|
||||
"filter": {
|
||||
"duotone": "var(--wp--preset--duotone--mattone)"
|
||||
}
|
||||
},
|
||||
"core/cover": {
|
||||
"filter": {
|
||||
"duotone": "var(--wp--preset--duotone--mattone)"
|
||||
}
|
||||
},
|
||||
"core/post-date": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--texturina)"
|
||||
}
|
||||
},
|
||||
"core/post-featured-image": {
|
||||
"filter": {
|
||||
"duotone": "var(--wp--preset--duotone--mattone)"
|
||||
}
|
||||
},
|
||||
"core/query-pagination": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--texturina)"
|
||||
}
|
||||
},
|
||||
"core/site-logo": {
|
||||
"filter": {
|
||||
"duotone": "var(--wp--preset--duotone--mattone)"
|
||||
}
|
||||
},
|
||||
"core/site-title": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--texturina)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"elements": {
|
||||
"h1": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--texturina)"
|
||||
}
|
||||
},
|
||||
"h2": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--texturina)"
|
||||
}
|
||||
},
|
||||
"h3": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--texturina)"
|
||||
}
|
||||
},
|
||||
"h4": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--texturina)"
|
||||
}
|
||||
},
|
||||
"h5": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--texturina)"
|
||||
}
|
||||
},
|
||||
"h6": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--texturina)"
|
||||
}
|
||||
},
|
||||
"heading": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--texturina)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--texturina)",
|
||||
"letterSpacing": "0rem"
|
||||
}
|
||||
},
|
||||
"title": "Mattone",
|
||||
"version": 2,
|
||||
"$schema": "https://schemas.wp.org/trunk/theme.json"
|
||||
}
|
115
hola/styles/pomegranate.json
Normal file
115
hola/styles/pomegranate.json
Normal file
|
@ -0,0 +1,115 @@
|
|||
{
|
||||
"settings": {
|
||||
"color": {
|
||||
"palette": [
|
||||
{
|
||||
"color": "#fbe9ee",
|
||||
"name": "Base",
|
||||
"slug": "base"
|
||||
},
|
||||
{
|
||||
"color": "#720044",
|
||||
"name": "Contrast",
|
||||
"slug": "contrast"
|
||||
},
|
||||
{
|
||||
"color": "#720044",
|
||||
"name": "Primary",
|
||||
"slug": "primary"
|
||||
},
|
||||
{
|
||||
"color": "#fbe9ee",
|
||||
"name": "Secondary",
|
||||
"slug": "secondary"
|
||||
},
|
||||
{
|
||||
"color": "#570034",
|
||||
"name": "Tertiary",
|
||||
"slug": "tertiary"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"styles": {
|
||||
"blocks": {
|
||||
"core/avatar": {
|
||||
"filter": {
|
||||
"duotone": "var(--wp--preset--duotone--pomegranate)"
|
||||
}
|
||||
},
|
||||
"core/cover": {
|
||||
"filter": {
|
||||
"duotone": "var(--wp--preset--duotone--pomegranate)"
|
||||
}
|
||||
},
|
||||
"core/post-date": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--plus-jakarta-sans)"
|
||||
}
|
||||
},
|
||||
"core/post-featured-image": {
|
||||
"filter": {
|
||||
"duotone": "var(--wp--preset--duotone--pomegranate)"
|
||||
}
|
||||
},
|
||||
"core/query-pagination": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--plus-jakarta-sans)"
|
||||
}
|
||||
},
|
||||
"core/site-logo": {
|
||||
"filter": {
|
||||
"duotone": "var(--wp--preset--duotone--pomegranate)"
|
||||
}
|
||||
},
|
||||
"core/site-title": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--plus-jakarta-sans)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"elements": {
|
||||
"h1": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--plus-jakarta-sans)"
|
||||
}
|
||||
},
|
||||
"h2": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--plus-jakarta-sans)"
|
||||
}
|
||||
},
|
||||
"h3": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--plus-jakarta-sans)"
|
||||
}
|
||||
},
|
||||
"h4": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--plus-jakarta-sans)"
|
||||
}
|
||||
},
|
||||
"h5": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--plus-jakarta-sans)"
|
||||
}
|
||||
},
|
||||
"h6": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--plus-jakarta-sans)"
|
||||
}
|
||||
},
|
||||
"heading": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--plus-jakarta-sans)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--plus-jakarta-sans)"
|
||||
}
|
||||
},
|
||||
"title": "Pomegranate",
|
||||
"version": 2,
|
||||
"$schema": "https://schemas.wp.org/trunk/theme.json"
|
||||
}
|
1
hola/templates/404.html
Normal file
1
hola/templates/404.html
Normal file
|
@ -0,0 +1 @@
|
|||
<!-- wp:pattern {"slug":"hola/404"} /-->
|
45
hola/templates/archive.html
Normal file
45
hola/templates/archive.html
Normal file
|
@ -0,0 +1,45 @@
|
|||
<!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0","margin":{"top":"0","bottom":"0"}},"border":{"left":{"width":"5px"},"top":[],"right":{"width":"5px"},"bottom":{"width":"5px"}},"dimensions":{"minHeight":"100vh"}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignfull" style="border-right-width:5px;border-bottom-width:5px;border-left-width:5px;min-height:100vh;margin-top:0;margin-bottom:0"><!-- wp:template-part {"slug":"header","area":"header","align":"full"} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|50","left":"var:preset|spacing|50"}}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group" style="padding-right:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)"><!-- wp:spacer {"height":"var:preset|spacing|70"} -->
|
||||
<div style="height:var(--wp--preset--spacing--70)" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer -->
|
||||
|
||||
<!-- wp:group {"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group"><!-- wp:query-title {"type":"archive"} /-->
|
||||
|
||||
<!-- wp:spacer {"height":"var:preset|spacing|30"} -->
|
||||
<div style="height:var(--wp--preset--spacing--30)" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:query {"queryId":0,"query":{"perPage":10,"pages":0,"offset":"1","postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true,"taxQuery":null,"parents":[]},"tagName":"main","layout":{"type":"constrained"}} -->
|
||||
<main class="wp-block-query"><!-- wp:post-template {"style":{"spacing":{"blockGap":"var:preset|spacing|50"}}} -->
|
||||
<!-- wp:group -->
|
||||
<div class="wp-block-group"><!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|40","bottom":"0"},"blockGap":"var:preset|spacing|20"},"border":{"top":{"width":"1px","style":"dotted"}}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
|
||||
<div class="wp-block-group" style="border-top-style:dotted;border-top-width:1px;padding-top:var(--wp--preset--spacing--40);padding-bottom:0"><!-- wp:post-title {"isLink":true,"style":{"layout":{"selfStretch":"fill","flexSize":null}}} /-->
|
||||
|
||||
<!-- wp:post-date {"textAlign":"left","format":"M j","style":{"layout":{"selfStretch":"fill","flexSize":null},"spacing":{"padding":{"top":"var:preset|spacing|20","bottom":"var:preset|spacing|20"}}}} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
<!-- /wp:post-template -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"0","bottom":"0"},"margin":{"top":"3vh"}},"border":{"top":{"width":"1px","style":"dotted"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="border-top-style:dotted;border-top-width:1px;margin-top:3vh;padding-top:0;padding-bottom:0"><!-- wp:query-pagination -->
|
||||
<!-- wp:query-pagination-previous {"label":"Previous"} /-->
|
||||
|
||||
<!-- wp:query-pagination-numbers /-->
|
||||
|
||||
<!-- wp:query-pagination-next {"label":"Next"} /-->
|
||||
<!-- /wp:query-pagination --></div>
|
||||
<!-- /wp:group --></main>
|
||||
<!-- /wp:query -->
|
||||
|
||||
<!-- wp:spacer {"height":"var:preset|spacing|70"} -->
|
||||
<div style="height:var(--wp--preset--spacing--70)" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /--></div>
|
||||
<!-- /wp:group -->
|
53
hola/templates/home.html
Normal file
53
hola/templates/home.html
Normal file
|
@ -0,0 +1,53 @@
|
|||
<!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0","margin":{"top":"0","bottom":"0"}},"border":{"left":{"width":"5px"},"top":[],"right":{"width":"5px"},"bottom":{"width":"5px"}},"dimensions":{"minHeight":"100vh"}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignfull" style="border-right-width:5px;border-bottom-width:5px;border-left-width:5px;min-height:100vh;margin-top:0;margin-bottom:0"><!-- wp:template-part {"slug":"header","area":"header","align":"full"} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|50","left":"var:preset|spacing|50"}}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group" style="padding-right:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)"><!-- wp:spacer {"height":"var:preset|spacing|70"} -->
|
||||
<div style="height:var(--wp--preset--spacing--70)" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer -->
|
||||
|
||||
<!-- wp:query {"queryId":0,"query":{"perPage":"1","pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":false,"taxQuery":null,"parents":[]},"tagName":"main","layout":{"type":"constrained"}} -->
|
||||
<main class="wp-block-query"><!-- wp:post-template {"style":{"spacing":{"blockGap":"var:preset|spacing|60"}}} -->
|
||||
<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|20","margin":{"bottom":"var:preset|spacing|50"}}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
|
||||
<div class="wp-block-group" style="margin-bottom:var(--wp--preset--spacing--50)"><!-- wp:post-title {"level":1,"isLink":true} /-->
|
||||
|
||||
<!-- wp:post-date {"textAlign":"left","format":"F j, Y"} /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:post-excerpt {"moreText":"\u003cstrong\u003eRead.\u003c/strong\u003e","showMoreOnNewLine":false} /-->
|
||||
<!-- /wp:post-template --></main>
|
||||
<!-- /wp:query -->
|
||||
|
||||
<!-- wp:spacer {"height":"var:preset|spacing|70"} -->
|
||||
<div style="height:var(--wp--preset--spacing--70)" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer -->
|
||||
|
||||
<!-- wp:query {"queryId":0,"query":{"perPage":"5","pages":0,"offset":"1","postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":false,"taxQuery":null,"parents":[]},"tagName":"main","layout":{"type":"constrained"}} -->
|
||||
<main class="wp-block-query"><!-- wp:post-template {"style":{"spacing":{"blockGap":"var:preset|spacing|50"}}} -->
|
||||
<!-- wp:group -->
|
||||
<div class="wp-block-group"><!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|40","bottom":"0"},"blockGap":"var:preset|spacing|20"},"border":{"top":{"width":"1px","style":"dotted"}}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
|
||||
<div class="wp-block-group" style="border-top-style:dotted;border-top-width:1px;padding-top:var(--wp--preset--spacing--40);padding-bottom:0"><!-- wp:post-title {"isLink":true,"style":{"layout":{"selfStretch":"fill","flexSize":null}}} /-->
|
||||
|
||||
<!-- wp:post-date {"textAlign":"left","format":"M j","style":{"layout":{"selfStretch":"fill","flexSize":null},"spacing":{"padding":{"top":"var:preset|spacing|20","bottom":"var:preset|spacing|20"}}}} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
<!-- /wp:post-template -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"0","bottom":"0"},"margin":{"top":"3vh"}},"border":{"top":{"width":"1px","style":"dotted"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="border-top-style:dotted;border-top-width:1px;margin-top:3vh;padding-top:0;padding-bottom:0"><!-- wp:query-pagination -->
|
||||
<!-- wp:query-pagination-previous {"label":"Previous"} /-->
|
||||
|
||||
<!-- wp:query-pagination-numbers /-->
|
||||
|
||||
<!-- wp:query-pagination-next {"label":"Next"} /-->
|
||||
<!-- /wp:query-pagination --></div>
|
||||
<!-- /wp:group --></main>
|
||||
<!-- /wp:query -->
|
||||
|
||||
<!-- wp:spacer {"height":"var:preset|spacing|70"} -->
|
||||
<div style="height:var(--wp--preset--spacing--70)" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /--></div>
|
||||
<!-- /wp:group -->
|
37
hola/templates/index.html
Normal file
37
hola/templates/index.html
Normal file
|
@ -0,0 +1,37 @@
|
|||
<!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0","margin":{"top":"0","bottom":"0"}},"border":{"left":{"width":"5px"},"top":[],"right":{"width":"5px"},"bottom":{"width":"5px"}},"dimensions":{"minHeight":"100vh"}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignfull" style="border-right-width:5px;border-bottom-width:5px;border-left-width:5px;min-height:100vh;margin-top:0;margin-bottom:0"><!-- wp:template-part {"slug":"header","area":"header","align":"full"} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|50","left":"var:preset|spacing|50"}}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group" style="padding-right:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)"><!-- wp:spacer {"height":"var:preset|spacing|70"} -->
|
||||
<div style="height:var(--wp--preset--spacing--70)" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer -->
|
||||
|
||||
<!-- wp:query {"queryId":0,"query":{"perPage":10,"pages":0,"offset":"1","postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true,"taxQuery":null,"parents":[]},"tagName":"main","layout":{"type":"constrained"}} -->
|
||||
<main class="wp-block-query"><!-- wp:post-template {"style":{"spacing":{"blockGap":"var:preset|spacing|50"}}} -->
|
||||
<!-- wp:group -->
|
||||
<div class="wp-block-group"><!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|40","bottom":"0"},"blockGap":"var:preset|spacing|20"},"border":{"top":{"width":"1px","style":"dotted"}}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
|
||||
<div class="wp-block-group" style="border-top-style:dotted;border-top-width:1px;padding-top:var(--wp--preset--spacing--40);padding-bottom:0"><!-- wp:post-title {"isLink":true,"style":{"layout":{"selfStretch":"fill","flexSize":null}}} /-->
|
||||
|
||||
<!-- wp:post-date {"textAlign":"left","format":"M j","style":{"layout":{"selfStretch":"fill","flexSize":null},"spacing":{"padding":{"top":"var:preset|spacing|20","bottom":"var:preset|spacing|20"}}}} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
<!-- /wp:post-template -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"0","bottom":"0"},"margin":{"top":"3vh"}},"border":{"top":{"width":"1px","style":"dotted"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="border-top-style:dotted;border-top-width:1px;margin-top:3vh;padding-top:0;padding-bottom:0"><!-- wp:query-pagination -->
|
||||
<!-- wp:query-pagination-previous {"label":"Previous"} /-->
|
||||
|
||||
<!-- wp:query-pagination-numbers /-->
|
||||
|
||||
<!-- wp:query-pagination-next {"label":"Next"} /-->
|
||||
<!-- /wp:query-pagination --></div>
|
||||
<!-- /wp:group --></main>
|
||||
<!-- /wp:query -->
|
||||
|
||||
<!-- wp:spacer {"height":"var:preset|spacing|70"} -->
|
||||
<div style="height:var(--wp--preset--spacing--70)" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /--></div>
|
||||
<!-- /wp:group -->
|
25
hola/templates/page.html
Normal file
25
hola/templates/page.html
Normal file
|
@ -0,0 +1,25 @@
|
|||
<!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0","margin":{"top":"0","bottom":"0"}},"border":{"left":{"width":"5px"},"top":[],"right":{"width":"5px"},"bottom":{"width":"5px"}},"dimensions":{"minHeight":"100vh"}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignfull" style="border-right-width:5px;border-bottom-width:5px;border-left-width:5px;min-height:100vh;margin-top:0;margin-bottom:0"><!-- wp:template-part {"slug":"header","area":"header","align":"full"} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|50","left":"var:preset|spacing|50"}}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group" style="padding-right:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)"><!-- wp:spacer {"height":"var:preset|spacing|70"} -->
|
||||
<div style="height:var(--wp--preset--spacing--70)" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer -->
|
||||
|
||||
<!-- wp:group {"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group"><!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|60","bottom":"var:preset|spacing|60"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="margin-top:var(--wp--preset--spacing--60);margin-bottom:var(--wp--preset--spacing--60)"><!-- wp:post-title {"level":1} /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"tagName":"main","lock":{"move":false,"remove":false}} -->
|
||||
<main class="wp-block-group"><!-- wp:post-content {"lock":{"move":false,"remove":false},"style":{"spacing":{"blockGap":"var:preset|spacing|40"}},"layout":{"type":"constrained"}} /--></main>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:spacer {"height":"var:preset|spacing|70"} -->
|
||||
<div style="height:var(--wp--preset--spacing--70)" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /--></div>
|
||||
<!-- /wp:group -->
|
47
hola/templates/search.html
Normal file
47
hola/templates/search.html
Normal file
|
@ -0,0 +1,47 @@
|
|||
<!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"0","margin":{"top":"0","bottom":"0"}},"border":{"left":{"width":"5px"},"top":[],"right":{"width":"5px"},"bottom":{"width":"5px"}},"dimensions":{"minHeight":"100vh"}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignfull" style="border-right-width:5px;border-bottom-width:5px;border-left-width:5px;min-height:100vh;margin-top:0;margin-bottom:0"><!-- wp:template-part {"slug":"header","area":"header","align":"full"} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|50","left":"var:preset|spacing|50"}}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group" style="padding-right:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)"><!-- wp:spacer {"height":"var:preset|spacing|70"} -->
|
||||
<div style="height:var(--wp--preset--spacing--70)" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer -->
|
||||
|
||||
<!-- wp:group {"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group"><!-- wp:query-title {"type":"search"} /-->
|
||||
|
||||
<!-- wp:search {"label":"Search","showLabel":false,"width":100,"widthUnit":"%","buttonPosition":"button-inside","buttonUseIcon":true} /-->
|
||||
|
||||
<!-- wp:spacer {"height":"var:preset|spacing|30"} -->
|
||||
<div style="height:var(--wp--preset--spacing--30)" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:query {"queryId":0,"query":{"perPage":10,"pages":0,"offset":"1","postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true,"taxQuery":null,"parents":[]},"tagName":"main","layout":{"type":"constrained"}} -->
|
||||
<main class="wp-block-query"><!-- wp:post-template {"style":{"spacing":{"blockGap":"var:preset|spacing|50"}}} -->
|
||||
<!-- wp:group -->
|
||||
<div class="wp-block-group"><!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|40","bottom":"0"},"blockGap":"var:preset|spacing|20"},"border":{"top":{"width":"1px","style":"dotted"}}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
|
||||
<div class="wp-block-group" style="border-top-style:dotted;border-top-width:1px;padding-top:var(--wp--preset--spacing--40);padding-bottom:0"><!-- wp:post-title {"isLink":true,"style":{"layout":{"selfStretch":"fill","flexSize":null}}} /-->
|
||||
|
||||
<!-- wp:post-date {"textAlign":"left","format":"M j","style":{"layout":{"selfStretch":"fill","flexSize":null},"spacing":{"padding":{"top":"var:preset|spacing|20","bottom":"var:preset|spacing|20"}}}} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
<!-- /wp:post-template -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"0","bottom":"0"},"margin":{"top":"3vh"}},"border":{"top":{"width":"1px","style":"dotted"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="border-top-style:dotted;border-top-width:1px;margin-top:3vh;padding-top:0;padding-bottom:0"><!-- wp:query-pagination -->
|
||||
<!-- wp:query-pagination-previous {"label":"Previous"} /-->
|
||||
|
||||
<!-- wp:query-pagination-numbers /-->
|
||||
|
||||
<!-- wp:query-pagination-next {"label":"Next"} /-->
|
||||
<!-- /wp:query-pagination --></div>
|
||||
<!-- /wp:group --></main>
|
||||
<!-- /wp:query -->
|
||||
|
||||
<!-- wp:spacer {"height":"var:preset|spacing|70"} -->
|
||||
<div style="height:var(--wp--preset--spacing--70)" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /--></div>
|
||||
<!-- /wp:group -->
|
1
hola/templates/single.html
Normal file
1
hola/templates/single.html
Normal file
|
@ -0,0 +1 @@
|
|||
<!-- wp:pattern {"slug":"hola/single"} /-->
|
834
hola/theme.json
Normal file
834
hola/theme.json
Normal file
|
@ -0,0 +1,834 @@
|
|||
{
|
||||
"settings": {
|
||||
"appearanceTools": true,
|
||||
"blocks": [],
|
||||
"color": {
|
||||
"customDuotone": true,
|
||||
"customGradient": false,
|
||||
"defaultDuotone": false,
|
||||
"duotone": [
|
||||
{
|
||||
"colors": [
|
||||
"#2B6EEE",
|
||||
"#FAFAFA"
|
||||
],
|
||||
"name": "Ligure",
|
||||
"slug": "ligure"
|
||||
},
|
||||
{
|
||||
"colors": [
|
||||
"#720044",
|
||||
"#FBE9EE"
|
||||
],
|
||||
"name": "Pomegranate",
|
||||
"slug": "pomegranate"
|
||||
},
|
||||
{
|
||||
"colors": [
|
||||
"#1F4733",
|
||||
"#F1F1F1"
|
||||
],
|
||||
"name": "Avocado",
|
||||
"slug": "avocado"
|
||||
},
|
||||
{
|
||||
"colors": [
|
||||
"#BA452E",
|
||||
"#FAFAFA"
|
||||
],
|
||||
"name": "Mattone",
|
||||
"slug": "mattone"
|
||||
}
|
||||
],
|
||||
"gradients": [
|
||||
{
|
||||
"gradient": "linear-gradient(to bottom,var(--wp--preset--color--primary) 85%,var(--wp--preset--color--base) 85%)",
|
||||
"name": "default gradient",
|
||||
"slug": "default-gradient"
|
||||
}
|
||||
],
|
||||
"palette": [
|
||||
{
|
||||
"color": "#fafafa",
|
||||
"name": "Base",
|
||||
"slug": "base"
|
||||
},
|
||||
{
|
||||
"color": "#2b6eee",
|
||||
"name": "Contrast",
|
||||
"slug": "contrast"
|
||||
},
|
||||
{
|
||||
"color": "#2b6eee",
|
||||
"name": "Primary",
|
||||
"slug": "primary"
|
||||
},
|
||||
{
|
||||
"color": "#fafafa",
|
||||
"name": "Secondary",
|
||||
"slug": "secondary"
|
||||
},
|
||||
{
|
||||
"color": "#135fec",
|
||||
"name": "Tertiary",
|
||||
"slug": "tertiary"
|
||||
}
|
||||
]
|
||||
},
|
||||
"layout": {
|
||||
"contentSize": "720px",
|
||||
"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,
|
||||
"dropCap": true,
|
||||
"fluid": true,
|
||||
"fontFamilies": [
|
||||
{
|
||||
"fontFace": [],
|
||||
"fontFamily": "-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif",
|
||||
"name": "System Font",
|
||||
"slug": "system-font"
|
||||
},
|
||||
{
|
||||
"fontFace": [
|
||||
{
|
||||
"fontFamily": "Plus Jakarta Sans",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "600",
|
||||
"src": [
|
||||
"file:./assets/fonts/plus-jakarta-sans_normal_600.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Plus Jakarta Sans",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "600",
|
||||
"src": [
|
||||
"file:./assets/fonts/plus-jakarta-sans_italic_600.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Plus Jakarta Sans",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "400",
|
||||
"src": [
|
||||
"file:./assets/fonts/plus-jakarta-sans_normal_400.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Plus Jakarta Sans",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "400",
|
||||
"src": [
|
||||
"file:./assets/fonts/plus-jakarta-sans_italic_400.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Plus Jakarta Sans",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "700",
|
||||
"src": [
|
||||
"file:./assets/fonts/plus-jakarta-sans_italic_700.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Plus Jakarta Sans",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "700",
|
||||
"src": [
|
||||
"file:./assets/fonts/plus-jakarta-sans_normal_700.ttf"
|
||||
]
|
||||
}
|
||||
],
|
||||
"fontFamily": "Plus Jakarta Sans",
|
||||
"slug": "plus-jakarta-sans"
|
||||
},
|
||||
{
|
||||
"fontFace": [
|
||||
{
|
||||
"fontFamily": "Crimson Pro",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "400",
|
||||
"src": [
|
||||
"file:./assets/fonts/crimson-pro_normal_400.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Crimson Pro",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "600",
|
||||
"src": [
|
||||
"file:./assets/fonts/crimson-pro_normal_600.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Crimson Pro",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "700",
|
||||
"src": [
|
||||
"file:./assets/fonts/crimson-pro_normal_700.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Crimson Pro",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "400",
|
||||
"src": [
|
||||
"file:./assets/fonts/crimson-pro_italic_400.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Crimson Pro",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "600",
|
||||
"src": [
|
||||
"file:./assets/fonts/crimson-pro_italic_600.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Crimson Pro",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "700",
|
||||
"src": [
|
||||
"file:./assets/fonts/crimson-pro_italic_700.ttf"
|
||||
]
|
||||
}
|
||||
],
|
||||
"fontFamily": "Crimson Pro",
|
||||
"slug": "crimson-pro"
|
||||
},
|
||||
{
|
||||
"fontFace": [
|
||||
{
|
||||
"fontFamily": "Texturina",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "400",
|
||||
"src": [
|
||||
"file:./assets/fonts/texturina_normal_400.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Texturina",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "600",
|
||||
"src": [
|
||||
"file:./assets/fonts/texturina_normal_600.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Texturina",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "700",
|
||||
"src": [
|
||||
"file:./assets/fonts/texturina_normal_700.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Texturina",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "400",
|
||||
"src": [
|
||||
"file:./assets/fonts/texturina_italic_400.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Texturina",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "600",
|
||||
"src": [
|
||||
"file:./assets/fonts/texturina_italic_600.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Texturina",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "700",
|
||||
"src": [
|
||||
"file:./assets/fonts/texturina_italic_700.ttf"
|
||||
]
|
||||
}
|
||||
],
|
||||
"fontFamily": "Texturina",
|
||||
"slug": "texturina"
|
||||
},
|
||||
{
|
||||
"fontFace": [
|
||||
{
|
||||
"fontFamily": "Manrope",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "400",
|
||||
"src": [
|
||||
"file:./assets/fonts/manrope-normal-400.woff2"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Manrope",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "700",
|
||||
"src": [
|
||||
"file:./assets/fonts/manrope-normal-700.woff2"
|
||||
]
|
||||
}
|
||||
],
|
||||
"fontFamily": "Manrope, sans-serif",
|
||||
"name": "Manrope",
|
||||
"slug": "manrope"
|
||||
}
|
||||
],
|
||||
"fontSizes": [
|
||||
{
|
||||
"fluid": {
|
||||
"max": "0.9375rem",
|
||||
"min": "0.8125rem"
|
||||
},
|
||||
"name": "Small",
|
||||
"size": "0.9375rem",
|
||||
"slug": "small"
|
||||
},
|
||||
{
|
||||
"fluid": {
|
||||
"max": "1.3125rem",
|
||||
"min": "1rem"
|
||||
},
|
||||
"name": "Medium",
|
||||
"size": "1rem",
|
||||
"slug": "medium"
|
||||
},
|
||||
{
|
||||
"fluid": {
|
||||
"max": "1.875rem",
|
||||
"min": "1.3125rem"
|
||||
},
|
||||
"name": "Large",
|
||||
"size": "1.875rem",
|
||||
"slug": "large"
|
||||
},
|
||||
{
|
||||
"fluid": {
|
||||
"max": "2.625rem",
|
||||
"min": "1.875rem"
|
||||
},
|
||||
"name": "Extra Large",
|
||||
"size": "2.625rem",
|
||||
"slug": "x-large"
|
||||
}
|
||||
]
|
||||
},
|
||||
"useRootPaddingAwareAlignments": true
|
||||
},
|
||||
"styles": {
|
||||
"blocks": {
|
||||
"core/avatar": {
|
||||
"border": {
|
||||
"radius": "2px"
|
||||
},
|
||||
"filter": {
|
||||
"duotone": "var(--wp--preset--duotone--ligure)"
|
||||
}
|
||||
},
|
||||
"core/button": {
|
||||
"spacing": {
|
||||
"padding": {
|
||||
"bottom": "var(--wp--preset--spacing--40)",
|
||||
"left": "var(--wp--preset--spacing--50)",
|
||||
"right": "var(--wp--preset--spacing--50)",
|
||||
"top": "var(--wp--preset--spacing--40)"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "700",
|
||||
"letterSpacing": "0rem",
|
||||
"textTransform": "uppercase"
|
||||
},
|
||||
"variations": {
|
||||
"outline": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "700",
|
||||
"letterSpacing": "-0.02rem"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/comment-author-name": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "700"
|
||||
}
|
||||
},
|
||||
"core/comment-content": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)"
|
||||
}
|
||||
},
|
||||
"core/comment-date": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)"
|
||||
}
|
||||
},
|
||||
"core/comment-edit-link": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--tertiary)"
|
||||
}
|
||||
},
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--contrast)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)"
|
||||
}
|
||||
},
|
||||
"core/comment-reply-link": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--tertiary)"
|
||||
}
|
||||
},
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--contrast)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)"
|
||||
}
|
||||
},
|
||||
"core/comments-pagination-next": {
|
||||
"typography": {
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "700"
|
||||
}
|
||||
},
|
||||
"core/comments-pagination-previous": {
|
||||
"typography": {
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "700"
|
||||
}
|
||||
},
|
||||
"core/cover": {
|
||||
"filter": {
|
||||
"duotone": "var(--wp--preset--duotone--ligure)"
|
||||
}
|
||||
},
|
||||
"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"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/post-author": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)"
|
||||
}
|
||||
},
|
||||
"core/post-author-name": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/post-comments-form": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)"
|
||||
}
|
||||
},
|
||||
"core/post-date": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--contrast)"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)"
|
||||
}
|
||||
},
|
||||
"core/post-featured-image": {
|
||||
"filter": {
|
||||
"duotone": "var(--wp--preset--duotone--ligure)"
|
||||
}
|
||||
},
|
||||
"core/post-navigation-link": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"textDecoration": "none"
|
||||
}
|
||||
},
|
||||
"core/post-terms": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)"
|
||||
}
|
||||
},
|
||||
"core/post-title": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/pullquote": {
|
||||
"border": {
|
||||
"color": "var(--wp--preset--color--contrast)",
|
||||
"style": "solid",
|
||||
"width": "1px 0"
|
||||
},
|
||||
"spacing": {
|
||||
"padding": {
|
||||
"bottom": "var(--wp--preset--spacing--50)",
|
||||
"left": "var(--wp--preset--spacing--50)",
|
||||
"right": "var(--wp--preset--spacing--50)",
|
||||
"top": "var(--wp--preset--spacing--50)"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--large)",
|
||||
"fontStyle": "italic"
|
||||
}
|
||||
},
|
||||
"core/query-pagination": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--large)",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "600"
|
||||
}
|
||||
},
|
||||
"core/query-title": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--x-large)"
|
||||
}
|
||||
},
|
||||
"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": "solid",
|
||||
"width": "1px"
|
||||
},
|
||||
"color": null,
|
||||
"left": {
|
||||
"style": "solid",
|
||||
"width": "1px"
|
||||
},
|
||||
"radius": "5px",
|
||||
"right": {
|
||||
"style": "solid",
|
||||
"width": "1px"
|
||||
},
|
||||
"style": null,
|
||||
"top": {
|
||||
"style": "solid",
|
||||
"width": "1px"
|
||||
},
|
||||
"width": null
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--medium)"
|
||||
}
|
||||
},
|
||||
"core/separator": {
|
||||
"border": {
|
||||
"color": "currentColor",
|
||||
"style": "solid",
|
||||
"width": "0 0 1px 0"
|
||||
},
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--contrast)"
|
||||
}
|
||||
},
|
||||
"core/site-logo": {
|
||||
"filter": {
|
||||
"duotone": "var(--wp--preset--duotone--ligure)"
|
||||
}
|
||||
},
|
||||
"core/site-tagline": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"letterSpacing": "0rem"
|
||||
}
|
||||
},
|
||||
"core/site-title": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "700",
|
||||
"letterSpacing": "0rem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"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)"
|
||||
},
|
||||
"outline": {
|
||||
"color": "var(--wp--preset--color--primary)",
|
||||
"offset": "2px",
|
||||
"style": "dotted",
|
||||
"width": "1px"
|
||||
}
|
||||
},
|
||||
":hover": {
|
||||
"color": {
|
||||
"background": "var(--wp--preset--color--secondary)",
|
||||
"text": "var(--wp--preset--color--base)"
|
||||
}
|
||||
},
|
||||
"border": {
|
||||
"radius": "0.25rem"
|
||||
},
|
||||
"color": {
|
||||
"background": "var(--wp--preset--color--contrast)",
|
||||
"text": "var(--wp--preset--color--base)"
|
||||
}
|
||||
},
|
||||
"h1": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--inter-display)",
|
||||
"fontSize": "var(--wp--preset--font-size--x-large)",
|
||||
"letterSpacing": "-0.04rem",
|
||||
"lineHeight": "1.2"
|
||||
}
|
||||
},
|
||||
"h2": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--inter-display)",
|
||||
"fontSize": "var(--wp--preset--font-size--large)",
|
||||
"letterSpacing": "-0.02rem",
|
||||
"lineHeight": "1.2"
|
||||
}
|
||||
},
|
||||
"h3": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--inter-display)",
|
||||
"fontSize": "var(--wp--preset--font-size--medium)",
|
||||
"letterSpacing": "-0.01rem"
|
||||
}
|
||||
},
|
||||
"h4": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--inter-display)",
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"letterSpacing": "0.01rem"
|
||||
}
|
||||
},
|
||||
"h5": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--inter-display)",
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"letterSpacing": "0.01rem"
|
||||
}
|
||||
},
|
||||
"h6": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--inter-display)",
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"letterSpacing": "0.01rem"
|
||||
}
|
||||
},
|
||||
"heading": {
|
||||
"typography": {
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "700",
|
||||
"lineHeight": "1.125"
|
||||
}
|
||||
},
|
||||
"link": {
|
||||
":hover": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--tertiary)"
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
},
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--contrast)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"spacing": {
|
||||
"blockGap": "var(--wp--preset--spacing--30)"
|
||||
},
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--manrope)",
|
||||
"fontSize": "var(--wp--preset--font-size--medium)",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "400",
|
||||
"letterSpacing": "0rem",
|
||||
"lineHeight": "1.5"
|
||||
}
|
||||
},
|
||||
"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