Compare commits
11 commits
test-chang
...
trunk
Author | SHA1 | Date | |
---|---|---|---|
![]() |
a5c6628e57 | ||
![]() |
f2a0bf01d0 | ||
![]() |
1ac182b798 | ||
![]() |
98e390fae1 | ||
![]() |
ea71d0eead | ||
![]() |
668cc7da29 | ||
![]() |
0c430bdb5d | ||
![]() |
271fa21b4c | ||
![]() |
8cc29719b9 | ||
![]() |
0c65de7f19 | ||
![]() |
48a0cb2435 |
120 changed files with 6049 additions and 59 deletions
3
.github/workflows/preview-theme.yml
vendored
3
.github/workflows/preview-theme.yml
vendored
|
@ -3,7 +3,8 @@ name: Preview Theme Changes
|
|||
on:
|
||||
pull_request_target:
|
||||
types: [opened, synchronize]
|
||||
permissions: {}
|
||||
permissions:
|
||||
pull-requests: write
|
||||
|
||||
jobs:
|
||||
preview-theme-changes:
|
||||
|
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -5,6 +5,7 @@ theme-dev-utils/
|
|||
theme-dev-utils
|
||||
vendor/
|
||||
*.DS_Store
|
||||
.DS_Store
|
||||
*.zip
|
||||
*.rej
|
||||
**/*.map
|
||||
|
|
|
@ -36,6 +36,9 @@ rm -rf ./deploy
|
|||
# Do things for all of the themes
|
||||
for THEME_SLUG in */ ; do
|
||||
|
||||
# Remove slashes from the theme slug
|
||||
THEME_SLUG=$(echo $THEME_SLUG | tr -d '/')
|
||||
|
||||
# Skip any classic themes (assuming that none of our classic themes use a theme.json file)
|
||||
if ! test -f "./${THEME_SLUG}/theme.json"; then
|
||||
# echo "Ignoring classic theme ${THEME_SLUG}. Moving on."
|
||||
|
@ -58,9 +61,16 @@ for THEME_SLUG in */ ; do
|
|||
| sed 's/-wpcom//g' \
|
||||
| tr -d '[[:space:]]')
|
||||
|
||||
DIRECTORY_URL="https://wordpress.org/themes/${THEME_SLUG}/"
|
||||
SVN_URL="https://themes.svn.wordpress.org/${THEME_SLUG}/"
|
||||
SVN_DIR="$PWD/deploy/${THEME_SLUG}"
|
||||
|
||||
response=$(curl -s -o /dev/null -w "%{http_code}" "$DIRECTORY_URL")
|
||||
if [ "$response" != "200" ]; then
|
||||
# echo "Theme with slug ${THEME_SLUG} has not been approved to the themes directory. Moving on."
|
||||
continue;
|
||||
fi
|
||||
|
||||
response=$(curl -s -o /dev/null -w "%{http_code}" "$SVN_URL")
|
||||
if [ "$response" != "200" ]; then
|
||||
# echo "No theme with slug ${THEME_SLUG} to be updated. Moving on."
|
||||
|
@ -91,6 +101,14 @@ for THEME_SLUG in */ ; do
|
|||
last_directory=${directories[${#directories[@]}-1]}
|
||||
last_version="${last_directory##*/}"
|
||||
|
||||
# Check if last_version is a later version than THEME_VERSION
|
||||
theme_version_without_decimal=$(echo $THEME_VERSION | tr -d '.')
|
||||
last_version_without_decimal=$(echo $last_version | tr -d '.')
|
||||
if (( last_version_without_decimal > theme_version_without_decimal )); then
|
||||
echo "${THEME_SLUG} version '${last_version}' is newer than '${THEME_VERSION}', so it must not need updating. Moving on."
|
||||
continue;
|
||||
fi
|
||||
|
||||
echo "➤ Upgrading ${THEME_SLUG} from ${last_version} to $THEME_VERSION"
|
||||
|
||||
if [[ $1 == "preview" ]]; then
|
||||
|
|
BIN
goodskin/assets/fonts/.DS_Store
vendored
BIN
goodskin/assets/fonts/.DS_Store
vendored
Binary file not shown.
BIN
goodskin/assets/images/.DS_Store
vendored
BIN
goodskin/assets/images/.DS_Store
vendored
Binary file not shown.
BIN
grammer/assets/fonts/albert-sans_italic_400.ttf
Normal file
BIN
grammer/assets/fonts/albert-sans_italic_400.ttf
Normal file
Binary file not shown.
BIN
grammer/assets/fonts/albert-sans_italic_600.ttf
Normal file
BIN
grammer/assets/fonts/albert-sans_italic_600.ttf
Normal file
Binary file not shown.
BIN
grammer/assets/fonts/albert-sans_normal_400.ttf
Normal file
BIN
grammer/assets/fonts/albert-sans_normal_400.ttf
Normal file
Binary file not shown.
BIN
grammer/assets/fonts/albert-sans_normal_600.ttf
Normal file
BIN
grammer/assets/fonts/albert-sans_normal_600.ttf
Normal file
Binary file not shown.
BIN
grammer/assets/fonts/haskoy_italic_400.woff2
Normal file
BIN
grammer/assets/fonts/haskoy_italic_400.woff2
Normal file
Binary file not shown.
BIN
grammer/assets/fonts/haskoy_italic_700.woff2
Normal file
BIN
grammer/assets/fonts/haskoy_italic_700.woff2
Normal file
Binary file not shown.
BIN
grammer/assets/fonts/haskoy_normal_400.woff2
Normal file
BIN
grammer/assets/fonts/haskoy_normal_400.woff2
Normal file
Binary file not shown.
BIN
grammer/assets/fonts/haskoy_normal_700.woff2
Normal file
BIN
grammer/assets/fonts/haskoy_normal_700.woff2
Normal file
Binary file not shown.
Binary file not shown.
After Width: | Height: | Size: 69 KiB |
BIN
grammer/assets/images/man-behind-the-camera.jpg
Normal file
BIN
grammer/assets/images/man-behind-the-camera.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 72 KiB |
61
grammer/functions.php
Normal file
61
grammer/functions.php
Normal file
|
@ -0,0 +1,61 @@
|
|||
<?php declare( strict_types = 1 ); ?>
|
||||
<?php
|
||||
/**
|
||||
* Grammer functions and definitions
|
||||
*
|
||||
* @link https://developer.wordpress.org/themes/basics/theme-functions/
|
||||
*
|
||||
* @package Grammer
|
||||
* @since Grammer 1.0
|
||||
*/
|
||||
|
||||
|
||||
if ( ! function_exists( 'grammer_support' ) ) :
|
||||
|
||||
/**
|
||||
* Sets up theme defaults and registers support for various WordPress features.
|
||||
*
|
||||
* @since Grammer 1.0
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function grammer_support() {
|
||||
|
||||
// Enqueue editor styles.
|
||||
add_editor_style( 'style.css' );
|
||||
|
||||
// Make theme available for translation.
|
||||
load_theme_textdomain( 'grammer' );
|
||||
}
|
||||
|
||||
endif;
|
||||
|
||||
add_action( 'after_setup_theme', 'grammer_support' );
|
||||
|
||||
if ( ! function_exists( 'grammer_styles' ) ) :
|
||||
|
||||
/**
|
||||
* Enqueue styles.
|
||||
*
|
||||
* @since Grammer 1.0
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function grammer_styles() {
|
||||
|
||||
// Register theme stylesheet.
|
||||
wp_register_style(
|
||||
'grammer-style',
|
||||
get_stylesheet_directory_uri() . '/style.css',
|
||||
array(),
|
||||
wp_get_theme()->get( 'Version' )
|
||||
);
|
||||
|
||||
// Enqueue theme stylesheet.
|
||||
wp_enqueue_style( 'grammer-style' );
|
||||
|
||||
}
|
||||
|
||||
endif;
|
||||
|
||||
add_action( 'wp_enqueue_scripts', 'grammer_styles' );
|
1
grammer/parts/footer.html
Normal file
1
grammer/parts/footer.html
Normal file
|
@ -0,0 +1 @@
|
|||
<!-- wp:pattern {"slug":"grammer/footer"} /-->
|
17
grammer/parts/header-minimal.html
Normal file
17
grammer/parts/header-minimal.html
Normal file
|
@ -0,0 +1,17 @@
|
|||
<!-- wp:group {"align":"wide","style":{"spacing":{"padding":{"top":"6vh","bottom":"3vh"}}},"layout":{"type":"constrained","justifyContent":"center"}} -->
|
||||
<div class="wp-block-group alignwide" style="padding-top:6vh;padding-bottom:3vh"><!-- wp:group {"align":"wide","layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"space-between","verticalAlignment":"center"}} -->
|
||||
<div class="wp-block-group alignwide"><!-- wp:group {"style":{"spacing":{"blockGap":"0.5rem"},"layout":{"selfStretch":"fill","flexSize":null}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
|
||||
<div class="wp-block-group"><!-- wp:site-title {"textAlign":"center"} /-->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p>@golaj</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"blockGap":"1rem"}},"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"right"}} -->
|
||||
<div class="wp-block-group"><!-- wp:post-navigation-link {"textAlign":"right","type":"previous","label":"Prev","style":{"layout":{"selfStretch":"fit","flexSize":null}}} /-->
|
||||
|
||||
<!-- wp:post-navigation-link {"textAlign":"right","label":"Next","style":{"layout":{"selfStretch":"fit","flexSize":null}}} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
29
grammer/parts/header-tagline.html
Normal file
29
grammer/parts/header-tagline.html
Normal file
|
@ -0,0 +1,29 @@
|
|||
<!-- wp:group {"align":"wide","style":{"spacing":{"padding":{"top":"3vh","bottom":"3vh"}}},"layout":{"type":"constrained","justifyContent":"center"}} -->
|
||||
<div class="wp-block-group alignwide" style="padding-top:3vh;padding-bottom:3vh"><!-- wp:columns {"verticalAlignment":"center","align":"wide","style":{"spacing":{"blockGap":{"top":"1rem"}}}} -->
|
||||
<div class="wp-block-columns alignwide are-vertically-aligned-center"><!-- wp:column {"verticalAlignment":"center","width":"66.66%","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-center" style="flex-basis:66.66%"><!-- wp:group {"style":{"layout":{"selfStretch":"fill","flexSize":null},"spacing":{"blockGap":"0.22rem"}},"layout":{"type":"flex","orientation":"vertical","verticalAlignment":"center","justifyContent":"stretch"}} -->
|
||||
<div class="wp-block-group"><!-- wp:site-title /-->
|
||||
|
||||
<!-- wp:site-tagline /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"center","width":"18.33%","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-center" style="flex-basis:18.33%"></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"center","width":"15%","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-center" style="flex-basis:15%"><!-- wp:group {"style":{"spacing":{"padding":{"top":"1rem","right":"1rem","bottom":"1rem","left":"1rem"}},"border":{"radius":"4px"}},"backgroundColor":"tertiary","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group has-tertiary-background-color has-background" style="border-radius:4px;padding-top:1rem;padding-right:1rem;padding-bottom:1rem;padding-left:1rem"><!-- wp:social-links {"iconColor":"secondary","iconColorValue":"#acacb9","size":"has-small-icon-size","style":{"layout":{"selfStretch":"fill","flexSize":null}},"className":"is-style-logos-only","layout":{"type":"flex","justifyContent":"space-between"}} -->
|
||||
<ul class="wp-block-social-links has-small-icon-size has-icon-color is-style-logos-only"><!-- wp:social-link {"url":"wordpress.org","service":"tumblr"} /-->
|
||||
|
||||
<!-- wp:social-link {"url":"wordpress.org","service":"fivehundredpx"} /-->
|
||||
|
||||
<!-- wp:social-link {"url":"wordpress.org","service":"instagram"} /-->
|
||||
|
||||
<!-- wp:social-link {"url":"wordpress.org/","service":"behance"} /--></ul>
|
||||
<!-- /wp:social-links --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></div>
|
||||
<!-- /wp:group -->
|
1
grammer/parts/header.html
Normal file
1
grammer/parts/header.html
Normal file
|
@ -0,0 +1 @@
|
|||
<!-- wp:pattern {"slug":"grammer/header"} /-->
|
7
grammer/parts/post-meta.html
Normal file
7
grammer/parts/post-meta.html
Normal file
|
@ -0,0 +1,7 @@
|
|||
<!-- wp:group {"style":{"spacing":{"blockGap":"0rem"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
|
||||
<div class="wp-block-group"><!-- wp:paragraph {"style":{"typography":{"fontStyle":"normal","fontWeight":"700"},"elements":{"link":{"color":{"text":"var:preset|color|secondary"}}}},"textColor":"secondary","fontSize":"small"} -->
|
||||
<p class="has-secondary-color has-text-color has-link-color has-small-font-size" style="font-style:normal;font-weight:700">Topics</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:post-terms {"term":"post_tag"} /--></div>
|
||||
<!-- /wp:group -->
|
19
grammer/parts/simple-header-with-image.html
Normal file
19
grammer/parts/simple-header-with-image.html
Normal file
|
@ -0,0 +1,19 @@
|
|||
<!-- wp:group {"align":"wide","style":{"spacing":{"padding":{"top":"6vh","bottom":"1.5vh"}}},"layout":{"type":"constrained","justifyContent":"center"}} -->
|
||||
<div class="wp-block-group alignwide" style="padding-top:6vh;padding-bottom:1.5vh"><!-- wp:group {"align":"wide","layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"space-between","verticalAlignment":"center"}} -->
|
||||
<div class="wp-block-group alignwide"><!-- wp:group {"style":{"spacing":{"blockGap":"0.5rem"},"layout":{"selfStretch":"fill","flexSize":null}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
|
||||
<div class="wp-block-group"><!-- wp:site-title {"textAlign":"center"} /-->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p>@golaj</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"align":"wide","style":{"spacing":{"margin":{"top":"0vh","bottom":"0vh"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignwide" style="margin-top:0vh;margin-bottom:0vh"><!-- wp:cover {"useFeaturedImage":true,"dimRatio":10,"overlayColor":"primary","isUserOverlayColor":true,"minHeight":60,"minHeightUnit":"vh","contentPosition":"bottom left","isDark":false,"align":"wide"} -->
|
||||
<div class="wp-block-cover alignwide is-light has-custom-content-position is-position-bottom-left" style="min-height:60vh"><span aria-hidden="true" class="wp-block-cover__background has-primary-background-color has-background-dim-10 has-background-dim"></span><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 -->
|
36
grammer/patterns/footer.php
Normal file
36
grammer/patterns/footer.php
Normal file
|
@ -0,0 +1,36 @@
|
|||
<?php declare( strict_types = 1 ); ?>
|
||||
<?php
|
||||
/**
|
||||
* Title: footer
|
||||
* Slug: grammer/footer
|
||||
* Categories: hidden
|
||||
* Inserter: no
|
||||
*/
|
||||
?>
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"3vh","bottom":"6vh"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-top:3vh;padding-bottom:6vh"><!-- wp:columns {"verticalAlignment":"center","align":"wide","style":{"spacing":{"blockGap":{"top":"1rem"}}}} -->
|
||||
<div class="wp-block-columns alignwide are-vertically-aligned-center"><!-- wp:column {"verticalAlignment":"center","width":"66.66%","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-center" style="flex-basis:66.66%"><!-- wp:paragraph {"align":"left","metadata":{"categories":["hidden"]},"style":{"layout":{"selfStretch":"fill","flexSize":null}}} -->
|
||||
<p class="has-text-align-left"><?php echo __('Designed with <a href="https://wordpress.org" rel="nofollow">WordPress</a>.', 'grammer');?></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"center","width":"18.33%","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-center" style="flex-basis:18.33%"></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"center","width":"15%","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-center" style="flex-basis:15%"><!-- wp:group {"style":{"spacing":{"padding":{"top":"1rem","right":"1rem","bottom":"1rem","left":"1rem"}},"border":{"radius":"4px"}},"backgroundColor":"tertiary","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group has-tertiary-background-color has-background" style="border-radius:4px;padding-top:1rem;padding-right:1rem;padding-bottom:1rem;padding-left:1rem"><!-- wp:social-links {"iconColor":"secondary","iconColorValue":"#acacb9","size":"has-small-icon-size","className":"is-style-logos-only","style":{"layout":{"selfStretch":"fill","flexSize":null}},"layout":{"type":"flex","justifyContent":"space-between"}} -->
|
||||
<ul class="wp-block-social-links has-small-icon-size has-icon-color is-style-logos-only"><!-- wp:social-link {"url":"wordpress.org","service":"tumblr"} /-->
|
||||
|
||||
<!-- wp:social-link {"url":"wordpress.org","service":"fivehundredpx"} /-->
|
||||
|
||||
<!-- wp:social-link {"url":"wordpress.org","service":"instagram"} /-->
|
||||
|
||||
<!-- wp:social-link {"url":"wordpress.org/","service":"behance"} /--></ul>
|
||||
<!-- /wp:social-links --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></div>
|
||||
<!-- /wp:group -->
|
44
grammer/patterns/header.php
Normal file
44
grammer/patterns/header.php
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?php declare( strict_types = 1 ); ?>
|
||||
<?php
|
||||
/**
|
||||
* Title: header
|
||||
* Slug: grammer/header
|
||||
* Categories: hidden
|
||||
* Inserter: no
|
||||
*/
|
||||
?>
|
||||
<!-- wp:group {"align":"wide","style":{"spacing":{"padding":{"top":"3vh","bottom":"3vh"}}},"layout":{"type":"constrained","justifyContent":"center"}} -->
|
||||
<div class="wp-block-group alignwide" style="padding-top:3vh;padding-bottom:3vh"><!-- wp:columns {"verticalAlignment":"center","align":"wide","style":{"spacing":{"blockGap":{"top":"1rem"}}}} -->
|
||||
<div class="wp-block-columns alignwide are-vertically-aligned-center"><!-- wp:column {"verticalAlignment":"center","width":"66.66%","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-center" style="flex-basis:66.66%"><!-- wp:group {"align":"full","style":{"spacing":{"blockGap":""}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
|
||||
<div class="wp-block-group alignfull"><!-- wp:site-logo {"width":120,"shouldSyncIcon":false,"className":"is-style-rounded","style":{"layout":{"selfStretch":"fixed","flexSize":"33.33%"}}} /-->
|
||||
|
||||
<!-- wp:group {"style":{"layout":{"selfStretch":"fill","flexSize":null},"spacing":{"blockGap":"0.22rem"}},"layout":{"type":"flex","orientation":"vertical","verticalAlignment":"center","justifyContent":"stretch"}} -->
|
||||
<div class="wp-block-group"><!-- wp:site-title /-->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><?php echo __('Howdy! I am Benjamin, a developer deeply passionate about writing, food, and photography. <a href="#">More about me</a>.', 'grammer');?></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"center","width":"18.33%","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-center" style="flex-basis:18.33%"></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"center","width":"15%","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-center" style="flex-basis:15%"><!-- wp:group {"style":{"spacing":{"padding":{"top":"1rem","right":"1rem","bottom":"1rem","left":"1rem"}},"border":{"radius":"4px"}},"backgroundColor":"tertiary","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group has-tertiary-background-color has-background" style="border-radius:4px;padding-top:1rem;padding-right:1rem;padding-bottom:1rem;padding-left:1rem"><!-- wp:social-links {"iconColor":"secondary","iconColorValue":"#acacb9","size":"has-small-icon-size","className":"is-style-logos-only","style":{"layout":{"selfStretch":"fill","flexSize":null}},"layout":{"type":"flex","justifyContent":"space-between"}} -->
|
||||
<ul class="wp-block-social-links has-small-icon-size has-icon-color is-style-logos-only"><!-- wp:social-link {"url":"wordpress.org","service":"tumblr"} /-->
|
||||
|
||||
<!-- wp:social-link {"url":"wordpress.org","service":"fivehundredpx"} /-->
|
||||
|
||||
<!-- wp:social-link {"url":"wordpress.org","service":"instagram"} /-->
|
||||
|
||||
<!-- wp:social-link {"url":"wordpress.org/","service":"behance"} /--></ul>
|
||||
<!-- /wp:social-links --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></div>
|
||||
<!-- /wp:group -->
|
24
grammer/patterns/home.php
Normal file
24
grammer/patterns/home.php
Normal file
|
@ -0,0 +1,24 @@
|
|||
<?php declare( strict_types = 1 ); ?>
|
||||
<?php
|
||||
/**
|
||||
* Title: home
|
||||
* Slug: grammer/home
|
||||
* Categories: hidden
|
||||
* Inserter: no
|
||||
*/
|
||||
?>
|
||||
<!-- wp:template-part {"slug":"header","area":"header"} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"0vh","bottom":"0vh"}}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group" style="margin-top:0vh;margin-bottom:0vh"><!-- wp:query {"queryId":8,"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true,"taxQuery":null},"align":"wide","className":"add-remove-space","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-query alignwide add-remove-space"><!-- wp:post-template {"align":"wide","style":{"spacing":{"blockGap":"1rem"}},"layout":{"type":"grid","columnCount":3}} -->
|
||||
<!-- wp:cover {"useFeaturedImage":true,"dimRatio":0,"isUserOverlayColor":true,"contentPosition":"bottom left","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-cover has-custom-content-position is-position-bottom-left"><span aria-hidden="true" class="wp-block-cover__background has-background-dim-0 has-background-dim"></span><div class="wp-block-cover__inner-container"><!-- wp:paragraph {"align":"center","placeholder":"Write title…"} -->
|
||||
<p class="has-text-align-center"><?php esc_html_e('', 'grammer');?></p>
|
||||
<!-- /wp:paragraph --></div></div>
|
||||
<!-- /wp:cover -->
|
||||
<!-- /wp:post-template --></div>
|
||||
<!-- /wp:query --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","area":"footer"} /-->
|
24
grammer/patterns/index.php
Normal file
24
grammer/patterns/index.php
Normal file
|
@ -0,0 +1,24 @@
|
|||
<?php declare( strict_types = 1 ); ?>
|
||||
<?php
|
||||
/**
|
||||
* Title: index
|
||||
* Slug: grammer/index
|
||||
* Categories: hidden
|
||||
* Inserter: no
|
||||
*/
|
||||
?>
|
||||
<!-- wp:template-part {"slug":"header-tagline","area":"uncategorized"} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"0vh","bottom":"0vh"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="margin-top:0vh;margin-bottom:0vh"><!-- wp:query {"queryId":8,"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true,"taxQuery":null},"align":"wide","className":"add-remove-space","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-query alignwide add-remove-space"><!-- wp:post-template {"align":"wide","style":{"spacing":{"blockGap":"1rem"}},"layout":{"type":"grid","columnCount":3}} -->
|
||||
<!-- wp:cover {"useFeaturedImage":true,"dimRatio":0,"isUserOverlayColor":true,"contentPosition":"bottom left","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-cover has-custom-content-position is-position-bottom-left"><span aria-hidden="true" class="wp-block-cover__background has-background-dim-0 has-background-dim"></span><div class="wp-block-cover__inner-container"><!-- wp:paragraph {"align":"center","placeholder":"Write title…"} -->
|
||||
<p class="has-text-align-center"><?php esc_html_e('', 'grammer');?></p>
|
||||
<!-- /wp:paragraph --></div></div>
|
||||
<!-- /wp:cover -->
|
||||
<!-- /wp:post-template --></div>
|
||||
<!-- /wp:query --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","area":"footer"} /-->
|
28
grammer/patterns/simple-header-with-image.php
Normal file
28
grammer/patterns/simple-header-with-image.php
Normal file
|
@ -0,0 +1,28 @@
|
|||
<?php declare( strict_types = 1 ); ?>
|
||||
<?php
|
||||
/**
|
||||
* Title: simple-header-with-image
|
||||
* Slug: grammer/simple-header-with-image
|
||||
* Categories: hidden
|
||||
* Inserter: no
|
||||
*/
|
||||
?>
|
||||
<!-- wp:group {"align":"wide","style":{"spacing":{"padding":{"top":"6vh","bottom":"1.5vh"}}},"layout":{"type":"constrained","justifyContent":"center"}} -->
|
||||
<div class="wp-block-group alignwide" style="padding-top:6vh;padding-bottom:1.5vh"><!-- wp:group {"align":"wide","layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"space-between","verticalAlignment":"center"}} -->
|
||||
<div class="wp-block-group alignwide"><!-- wp:group {"style":{"spacing":{"blockGap":"0.5rem"},"layout":{"selfStretch":"fill","flexSize":null}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
|
||||
<div class="wp-block-group"><!-- wp:site-title {"textAlign":"center"} /-->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><?php echo __('@golaj', 'grammer');?></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"align":"wide","style":{"spacing":{"margin":{"top":"0vh","bottom":"0vh"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignwide" style="margin-top:0vh;margin-bottom:0vh"><!-- wp:cover {"url":"<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/7c73e-man-behind-the-camera-scaled-1.jpg","dimRatio":10,"overlayColor":"primary","isUserOverlayColor":true,"minHeight":60,"minHeightUnit":"vh","contentPosition":"bottom left","align":"wide"} -->
|
||||
<div class="wp-block-cover alignwide has-custom-content-position is-position-bottom-left" style="min-height:60vh"><span aria-hidden="true" class="wp-block-cover__background has-primary-background-color has-background-dim-10 has-background-dim"></span><img class="wp-block-cover__image-background " alt="<?php echo __('', 'grammer');?>" src="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/7c73e-man-behind-the-camera-scaled-1.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"><?php echo __('', 'grammer');?></p>
|
||||
<!-- /wp:paragraph --></div></div>
|
||||
<!-- /wp:cover --></div>
|
||||
<!-- /wp:group -->
|
103
grammer/readme.txt
Normal file
103
grammer/readme.txt
Normal file
|
@ -0,0 +1,103 @@
|
|||
== Grammer ==
|
||||
|
||||
Contributors: Automattic
|
||||
Requires at least: 6.0
|
||||
Tested up to: 6.6
|
||||
Requires PHP: 5.7
|
||||
License: GPLv2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
|
||||
|
||||
== Description ==
|
||||
|
||||
Get Grammer now to bring the Social Media experience to your site and transform it into a repository for your photos and videos.
|
||||
|
||||
== Changelog ==
|
||||
|
||||
= 1.1.0 =
|
||||
* Initial release
|
||||
|
||||
|
||||
== Copyright ==
|
||||
|
||||
Grammer WordPress Theme, (C) 2024 Automattic.
|
||||
Grammer 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.
|
||||
|
||||
|
||||
== Fonts ==
|
||||
|
||||
Haskoy
|
||||
Copyright 2021 The Haskoy Project Authors (https://github.com/ertekinno/haskoy)
|
||||
Source: https://ertekinn.com/
|
||||
License: This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL
|
||||
|
||||
== Images ==
|
||||
|
||||
Title: Site logo image
|
||||
License: Generated with AI on Midjourney, released under the CC0 license.
|
||||
|
||||
Title: Pizza with Italian sausage
|
||||
Author: Jakub Kapusnak - Prague, Czech Republic
|
||||
License: CC0 1.0 Universal (CC0 1.0)
|
||||
License URL: https://en.wikipedia.org/wiki/public_domain
|
||||
Source: https://www.foodiesfeed.com/free-food-photo/pizza-with-italian-sausage/
|
||||
|
||||
Title: Seafood lunch of mussels and berries
|
||||
Author: Mary - Amsterdam
|
||||
License: CC0 1.0 Universal (CC0 1.0)
|
||||
License URL: https://en.wikipedia.org/wiki/public_domain
|
||||
Source: https://www.foodiesfeed.com/free-food-photo/variety-of-seafood-mussels/
|
||||
|
||||
Title: Vegan chickpea and potato curry
|
||||
Author: Justyna Le - Cracow, Poland
|
||||
License: CC0 1.0 Universal (CC0 1.0)
|
||||
License URL: https://en.wikipedia.org/wiki/public_domain
|
||||
Source: https://www.foodiesfeed.com/free-food-photo/vegan-chickpea-and-potato-curry/
|
||||
|
||||
Title: Fresh ripe figs on a wooden background
|
||||
Author: Jakub Kapusnak - Prague, Czech Republic
|
||||
License: CC0 1.0 Universal (CC0 1.0)
|
||||
License URL: https://en.wikipedia.org/wiki/public_domain
|
||||
Source: https://www.foodiesfeed.com/free-food-photo/fresh-ripe-figs-on-a-wooden-background/
|
||||
|
||||
Title: Chocolate truffles with walnuts close up
|
||||
Author: Alex Souto Maior - Rio de Janeiro, Brasil
|
||||
License: CC0 1.0 Universal (CC0 1.0)
|
||||
License URL: https://en.wikipedia.org/wiki/public_domain
|
||||
Source: https://www.foodiesfeed.com/free-food-photo/chocolate-truffles-with-walnuts-close-up/
|
||||
|
||||
Title: Chocolate cake
|
||||
Author: Yana Kozlova
|
||||
License: CC0 1.0 Universal (CC0 1.0)
|
||||
License URL: https://en.wikipedia.org/wiki/public_domain
|
||||
Source: https://www.foodiesfeed.com/free-food-photo/chocolate-cake-2/
|
||||
|
||||
Title: Peanut Butter and Banana Smoothie
|
||||
Author: Leah Rolando
|
||||
License: CC0 1.0 Universal (CC0 1.0)
|
||||
License URL: https://en.wikipedia.org/wiki/public_domain
|
||||
Source: https://www.foodiesfeed.com/free-food-photo/peanut-butter-and-banana-smoothie/
|
||||
|
||||
Title: Pistachio croissant
|
||||
Author: Jakub Kapusnak - Prague, Czech Republic
|
||||
License: CC0 1.0 Universal (CC0 1.0)
|
||||
License URL: https://en.wikipedia.org/wiki/public_domain
|
||||
Source: https://www.foodiesfeed.com/free-food-photo/pistachio-croissant/
|
||||
|
||||
Title: Eating cheesecake with berries
|
||||
Author: Karolina Grabowska - Łódź, Poland
|
||||
License: CC0 1.0 Universal (CC0 1.0)
|
||||
License URL: https://en.wikipedia.org/wiki/public_domain
|
||||
Source: https://www.foodiesfeed.com/free-food-photo/eating-cheesecake-with-berries/
|
||||
|
||||
|
BIN
grammer/screenshot.png
Normal file
BIN
grammer/screenshot.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 334 KiB |
71
grammer/style.css
Normal file
71
grammer/style.css
Normal file
|
@ -0,0 +1,71 @@
|
|||
/*
|
||||
Theme Name: Grammer
|
||||
Theme URI: https://themeshaper.com/grammer/
|
||||
Author: Automattic
|
||||
Author URI: https://automattic.com
|
||||
Description: Get Grammer now to bring the Social Media experience to your site and transform it into a repository for your photos and videos.
|
||||
Requires at least:
|
||||
Tested up to: 6.6
|
||||
Requires PHP:
|
||||
Version: 1.1.1
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Text Domain: grammer
|
||||
Tags: photography, blog, grid-layout, block-patterns, translation-ready, full-site-editing, full-width-template, rtl-language-support, style-variations, template-editing, theme-options, threaded-comments
|
||||
|
||||
/*
|
||||
* Font smoothing
|
||||
* https://github.com/WordPress/gutenberg/issues/35934
|
||||
*/
|
||||
|
||||
/*
|
||||
* Font smoothing
|
||||
* https://github.com/WordPress/gutenberg/issues/35934
|
||||
*/
|
||||
body {
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
/*
|
||||
* 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--background);
|
||||
border-color: var(--wp--preset--color--secondary);
|
||||
}
|
||||
|
||||
/**
|
||||
* Currently table styles are only available with 'wp-block-styles'
|
||||
* theme support (block css) thus the following needs to be included
|
||||
* since 'wp-block-styles' aren't used for this theme.
|
||||
* https://github.com/WordPress/gutenberg/issues/45065
|
||||
*/
|
||||
.wp-block-table thead {
|
||||
border-bottom: 3px solid;
|
||||
}
|
||||
.wp-block-table tfoot {
|
||||
border-top: 3px solid;
|
||||
}
|
||||
.wp-block-table td,
|
||||
.wp-block-table th {
|
||||
padding: var(--wp--preset--spacing--30);
|
||||
border: 1px solid;
|
||||
word-break: normal;
|
||||
}
|
||||
.wp-block-table figcaption {
|
||||
font-size: var(--wp--preset--font-size--small);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/*
|
||||
* Link styles
|
||||
* https://github.com/WordPress/gutenberg/issues/42319
|
||||
*/
|
||||
a {
|
||||
text-decoration-thickness: .0625em !important;
|
||||
text-underline-offset: .15em;
|
||||
}
|
381
grammer/styles/lightmode.json
Normal file
381
grammer/styles/lightmode.json
Normal file
|
@ -0,0 +1,381 @@
|
|||
{
|
||||
"settings": {
|
||||
"blocks": {
|
||||
"core/cover": {
|
||||
"color": {
|
||||
"palette": [
|
||||
{
|
||||
"color": "#0c0c0e",
|
||||
"name": "Primary",
|
||||
"slug": "primary"
|
||||
},
|
||||
{
|
||||
"color": "#babac4",
|
||||
"name": "Secondary",
|
||||
"slug": "secondary"
|
||||
},
|
||||
{
|
||||
"color": "#d6d6dc",
|
||||
"name": "Foreground",
|
||||
"slug": "foreground"
|
||||
},
|
||||
{
|
||||
"color": "#f3f1f1",
|
||||
"name": "Background",
|
||||
"slug": "background"
|
||||
},
|
||||
{
|
||||
"color": "#fcfcfc1a",
|
||||
"name": "Tertiary",
|
||||
"slug": "tertiary"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"color": {
|
||||
"palette": [
|
||||
{
|
||||
"color": "#f3f1f1",
|
||||
"name": "Primary",
|
||||
"slug": "primary"
|
||||
},
|
||||
{
|
||||
"color": "#0c0c0ebf",
|
||||
"name": "Secondary",
|
||||
"slug": "secondary"
|
||||
},
|
||||
{
|
||||
"color": "#0c0c0ed9",
|
||||
"name": "Foreground",
|
||||
"slug": "foreground"
|
||||
},
|
||||
{
|
||||
"color": "#0c0c0ef2",
|
||||
"name": "Background",
|
||||
"slug": "background"
|
||||
},
|
||||
{
|
||||
"color": "#0c0c0e1a",
|
||||
"name": "Tertiary",
|
||||
"slug": "tertiary"
|
||||
}
|
||||
]
|
||||
},
|
||||
"layout": {
|
||||
"contentSize": "800px",
|
||||
"wideSize": "1200px"
|
||||
}
|
||||
},
|
||||
"styles": {
|
||||
"blocks": {
|
||||
"core/avatar": {
|
||||
"border": {
|
||||
"bottom": {
|
||||
"color": "var(--wp--preset--color--tertiary)",
|
||||
"style": "solid"
|
||||
},
|
||||
"left": {
|
||||
"color": "var(--wp--preset--color--tertiary)",
|
||||
"style": "solid"
|
||||
},
|
||||
"radius": "4px",
|
||||
"right": {
|
||||
"color": "var(--wp--preset--color--tertiary)",
|
||||
"style": "solid"
|
||||
},
|
||||
"top": {
|
||||
"color": "var(--wp--preset--color--tertiary)",
|
||||
"style": "solid"
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/comment-author-name": {
|
||||
"typography": {
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "700",
|
||||
"letterSpacing": "0rem",
|
||||
"lineHeight": "1.2"
|
||||
}
|
||||
},
|
||||
"core/comment-content": {
|
||||
"typography": {
|
||||
"lineHeight": "1.2"
|
||||
}
|
||||
},
|
||||
"core/comment-date": {
|
||||
"typography": {
|
||||
"letterSpacing": "0rem",
|
||||
"lineHeight": "1.2"
|
||||
}
|
||||
},
|
||||
"core/comment-edit-link": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--foreground)"
|
||||
}
|
||||
},
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--secondary)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "700",
|
||||
"letterSpacing": "0rem",
|
||||
"lineHeight": "1.2",
|
||||
"textTransform": "none"
|
||||
}
|
||||
},
|
||||
"core/comment-reply-link": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--foreground)"
|
||||
}
|
||||
},
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--secondary)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "700",
|
||||
"letterSpacing": "0px",
|
||||
"lineHeight": "1.2",
|
||||
"textTransform": "none"
|
||||
}
|
||||
},
|
||||
"core/cover": {
|
||||
"border": {
|
||||
"radius": "4px"
|
||||
},
|
||||
"filter": {
|
||||
"duotone": "var(--wp--preset--duotone--dark-grayscale)"
|
||||
}
|
||||
},
|
||||
"core/post-comments-form": {
|
||||
"spacing": {
|
||||
"padding": {
|
||||
"top": "3vh"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)"
|
||||
}
|
||||
},
|
||||
"core/post-content": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--background)"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--background)"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/post-date": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--secondary)"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--secondary)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"lineHeight": "1.5"
|
||||
}
|
||||
},
|
||||
"core/post-featured-image": {
|
||||
"border": {
|
||||
"bottom": {
|
||||
"color": "var(--wp--preset--color--tertiary)",
|
||||
"style": "solid",
|
||||
"width": "1px"
|
||||
},
|
||||
"left": {
|
||||
"color": "var(--wp--preset--color--tertiary)",
|
||||
"style": "solid",
|
||||
"width": "1px"
|
||||
},
|
||||
"radius": "4px",
|
||||
"right": {
|
||||
"color": "var(--wp--preset--color--tertiary)",
|
||||
"style": "solid",
|
||||
"width": "1px"
|
||||
},
|
||||
"top": {
|
||||
"color": "var(--wp--preset--color--tertiary)",
|
||||
"style": "solid",
|
||||
"width": "1px"
|
||||
}
|
||||
},
|
||||
"spacing": {
|
||||
"margin": {
|
||||
"bottom": "0px",
|
||||
"left": "0px",
|
||||
"right": "0px",
|
||||
"top": "0px"
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/post-navigation-link": {
|
||||
"typography": {
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "700"
|
||||
}
|
||||
},
|
||||
"core/post-terms": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--secondary)"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--secondary)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "400",
|
||||
"lineHeight": "1.5"
|
||||
}
|
||||
},
|
||||
"core/query-pagination-next": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--medium)"
|
||||
}
|
||||
},
|
||||
"core/query-pagination-previous": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--medium)"
|
||||
}
|
||||
},
|
||||
"core/query-title": {
|
||||
"spacing": {
|
||||
"padding": {
|
||||
"bottom": "2vh",
|
||||
"top": "2vh"
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/site-tagline": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--medium)"
|
||||
}
|
||||
},
|
||||
"core/site-title": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--background)"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--background)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--medium)",
|
||||
"letterSpacing": "0rem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--secondary)"
|
||||
},
|
||||
"elements": {
|
||||
"h1": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--large)",
|
||||
"letterSpacing": "0rem",
|
||||
"lineHeight": "1"
|
||||
}
|
||||
},
|
||||
"h2": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--medium)",
|
||||
"letterSpacing": "0rem"
|
||||
}
|
||||
},
|
||||
"h3": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--medium)",
|
||||
"letterSpacing": "0rem"
|
||||
}
|
||||
},
|
||||
"h4": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--medium)",
|
||||
"letterSpacing": "0rem"
|
||||
}
|
||||
},
|
||||
"h5": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--medium)",
|
||||
"letterSpacing": "0rem"
|
||||
}
|
||||
},
|
||||
"h6": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--medium)",
|
||||
"letterSpacing": "0rem"
|
||||
}
|
||||
},
|
||||
"heading": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--secondary)"
|
||||
},
|
||||
"typography": {
|
||||
"lineHeight": "1"
|
||||
}
|
||||
},
|
||||
"link": {
|
||||
":hover": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--background)"
|
||||
}
|
||||
},
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--foreground)"
|
||||
},
|
||||
"typography": {
|
||||
"lineHeight": "1.2",
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
"spacing": {
|
||||
"padding": {
|
||||
"bottom": "0rem",
|
||||
"left": "1rem",
|
||||
"right": "1rem",
|
||||
"top": "0rem"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--albert-sans)",
|
||||
"fontSize": "var(--wp--preset--font-size--medium)",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "400",
|
||||
"letterSpacing": "0rem",
|
||||
"lineHeight": "1.2"
|
||||
}
|
||||
},
|
||||
"title": "Light Mode",
|
||||
"version": 3,
|
||||
"$schema": "https://schemas.wp.org/trunk/theme.json"
|
||||
}
|
19
grammer/templates/404.html
Normal file
19
grammer/templates/404.html
Normal file
|
@ -0,0 +1,19 @@
|
|||
<!-- wp:template-part {"slug":"header-tagline","area":"uncategorized"} /-->
|
||||
|
||||
<!-- wp:group {"tagName":"main","metadata":{"categories":["hidden"]},"style":{"spacing":{"padding":{"top":"15vh","bottom":"25vh"},"margin":{"top":"0vh","bottom":"0vh"}}},"layout":{"type":"constrained"}} -->
|
||||
<main class="wp-block-group" style="margin-top:0vh;margin-bottom:0vh;padding-top:15vh;padding-bottom:25vh"><!-- wp:group {"align":"wide","style":{"spacing":{"blockGap":"3rem"}},"layout":{"type":"constrained","justifyContent":"left"}} -->
|
||||
<div class="wp-block-group alignwide"><!-- wp:heading {"textAlign":"left","level":1,"style":{"typography":{"fontSize":"4.8rem","lineHeight":"1.1"},"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}}} -->
|
||||
<h1 class="wp-block-heading has-text-align-left" id="oops-that-page-can-t-be-found" style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;font-size:4.8rem;line-height:1.1">Oops! That page<br>can’t be found.</h1>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"blockGap":"1.5rem"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
|
||||
<div class="wp-block-group"><!-- wp:paragraph {"style":{"typography":{"fontSize":"1.1rem","lineHeight":"1.5"}}} -->
|
||||
<p style="font-size:1.1rem;line-height:1.5">It looks like nothing was found at this location.<br>Maybe try a search?</p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:search {"label":"Search","showLabel":false,"width":100,"widthUnit":"%","buttonText":"Search","buttonPosition":"button-inside","buttonUseIcon":true,"style":{"border":{"radius":"0px","width":"0px","style":"none"}}} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></main>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","area":"footer"} /-->
|
31
grammer/templates/archive.html
Normal file
31
grammer/templates/archive.html
Normal file
|
@ -0,0 +1,31 @@
|
|||
<!-- wp:template-part {"slug":"header-tagline","area":"uncategorized"} /-->
|
||||
|
||||
<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"0vh","bottom":"0vh"}}},"layout":{"type":"constrained"}} -->
|
||||
<main class="wp-block-group" style="margin-top:0vh;margin-bottom:0vh"><!-- wp:query-title {"type":"archive","align":"wide","style":{"typography":{"letterSpacing":"0px"}}} /-->
|
||||
|
||||
<!-- wp:query {"queryId":1,"query":{"perPage":9,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true},"align":"wide","layout":{"type":"default"}} -->
|
||||
<div class="wp-block-query alignwide"><!-- wp:post-template {"align":"wide","layout":{"type":"grid","columnCount":"6"}} -->
|
||||
<!-- wp:post-featured-image {"isLink":true,"aspectRatio":"1","width":"","height":"","align":"wide"} /-->
|
||||
|
||||
<!-- wp:post-date {"format":"M j, Y","isLink":true,"style":{"spacing":{"margin":{"bottom":"1.5rem"}}},"fontSize":"small"} /-->
|
||||
<!-- /wp:post-template -->
|
||||
|
||||
<!-- wp:query-pagination {"paginationArrow":"arrow","align":"wide","style":{"typography":{"fontSize":"2rem","letterSpacing":"0px"}},"layout":{"type":"flex","justifyContent":"space-between"}} -->
|
||||
<!-- wp:query-pagination-previous {"label":"Newer Posts"} /-->
|
||||
|
||||
<!-- wp:query-pagination-next {"label":"Older Posts"} /-->
|
||||
<!-- /wp:query-pagination -->
|
||||
|
||||
<!-- wp:query-no-results -->
|
||||
<!-- wp:group {"align":"wide","style":{"spacing":{"margin":{"bottom":"2vh"}}},"layout":{"type":"flex","orientation":"vertical"}} -->
|
||||
<div class="wp-block-group alignwide" style="margin-bottom:2vh"><!-- wp:paragraph -->
|
||||
<p>Nothing matched your search terms, sorry.<br>Please try again with different keywords.</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:search {"label":"Search","showLabel":false,"width":50,"widthUnit":"%","buttonText":"Search","buttonPosition":"button-inside","buttonUseIcon":true,"style":{"border":{"radius":"0px","width":"0px","style":"none"}},"textColor":"background"} /-->
|
||||
<!-- /wp:query-no-results --></div>
|
||||
<!-- /wp:query --></main>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","area":"footer"} /-->
|
11
grammer/templates/home.html
Normal file
11
grammer/templates/home.html
Normal file
|
@ -0,0 +1,11 @@
|
|||
<!-- wp:template-part {"slug":"header","area":"header"} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"0vh","bottom":"0vh"}}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group" style="margin-top:0vh;margin-bottom:0vh"><!-- wp:query {"queryId":8,"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true,"taxQuery":null},"align":"wide","className":"add-remove-space","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-query alignwide add-remove-space"><!-- wp:post-template {"align":"wide","style":{"spacing":{"blockGap":"1rem"}},"layout":{"type":"grid","columnCount":3}} -->
|
||||
<!-- wp:post-featured-image {"isLink":true,"aspectRatio":"1"} /-->
|
||||
<!-- /wp:post-template --></div>
|
||||
<!-- /wp:query --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","area":"footer"} /-->
|
11
grammer/templates/index.html
Normal file
11
grammer/templates/index.html
Normal file
|
@ -0,0 +1,11 @@
|
|||
<!-- wp:template-part {"slug":"header-tagline","area":"uncategorized"} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"0vh","bottom":"0vh"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="margin-top:0vh;margin-bottom:0vh"><!-- wp:query {"queryId":8,"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true,"taxQuery":null},"align":"wide","className":"add-remove-space","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-query alignwide add-remove-space"><!-- wp:post-template {"align":"wide","style":{"spacing":{"blockGap":"1rem"}},"layout":{"type":"grid","columnCount":3}} -->
|
||||
<!-- wp:post-featured-image {"isLink":true,"aspectRatio":"1"} /-->
|
||||
<!-- /wp:post-template --></div>
|
||||
<!-- /wp:query --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","area":"footer"} /-->
|
17
grammer/templates/page.html
Normal file
17
grammer/templates/page.html
Normal file
|
@ -0,0 +1,17 @@
|
|||
<!-- wp:template-part {"slug":"simple-header-with-image","area":"uncategorized"} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"6vh","bottom":"6vh"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-top:6vh;padding-bottom:6vh"><!-- wp:group {"align":"wide","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignwide"><!-- wp:columns {"verticalAlignment":"center","align":"wide"} -->
|
||||
<div class="wp-block-columns alignwide are-vertically-aligned-center"><!-- wp:column {"verticalAlignment":"center","width":"66.66%","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-center" style="flex-basis:66.66%"><!-- wp:post-content /--></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"center","width":"33.33%","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-center" style="flex-basis:33.33%"></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","area":"footer"} /-->
|
31
grammer/templates/search.html
Normal file
31
grammer/templates/search.html
Normal file
|
@ -0,0 +1,31 @@
|
|||
<!-- wp:template-part {"slug":"header-tagline","area":"uncategorized"} /-->
|
||||
|
||||
<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"0vh","bottom":"0vh"}}},"layout":{"type":"constrained"}} -->
|
||||
<main class="wp-block-group" style="margin-top:0vh;margin-bottom:0vh"><!-- wp:query-title {"type":"search","align":"wide"} /-->
|
||||
|
||||
<!-- wp:query {"queryId":1,"query":{"perPage":9,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true},"align":"wide","layout":{"type":"default"}} -->
|
||||
<div class="wp-block-query alignwide"><!-- wp:post-template {"align":"wide","layout":{"type":"grid","columnCount":"6"}} -->
|
||||
<!-- wp:post-featured-image {"isLink":true,"aspectRatio":"1","width":"","height":"","align":"wide"} /-->
|
||||
|
||||
<!-- wp:post-date {"format":"M j, Y","isLink":true,"style":{"spacing":{"margin":{"bottom":"1.5rem"}}},"fontSize":"small"} /-->
|
||||
<!-- /wp:post-template -->
|
||||
|
||||
<!-- wp:query-pagination {"paginationArrow":"arrow","align":"wide","style":{"typography":{"fontSize":"2rem","letterSpacing":"0px"}},"layout":{"type":"flex","justifyContent":"space-between"}} -->
|
||||
<!-- wp:query-pagination-previous {"label":"Newer Posts"} /-->
|
||||
|
||||
<!-- wp:query-pagination-next {"label":"Older Posts"} /-->
|
||||
<!-- /wp:query-pagination -->
|
||||
|
||||
<!-- wp:query-no-results -->
|
||||
<!-- wp:group {"align":"wide","style":{"spacing":{"margin":{"bottom":"2vh"}}},"layout":{"type":"flex","orientation":"vertical"}} -->
|
||||
<div class="wp-block-group alignwide" style="margin-bottom:2vh"><!-- wp:paragraph -->
|
||||
<p>Nothing matched your search terms, sorry.<br>Please try again with different keywords.</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:search {"label":"Search","showLabel":false,"width":50,"widthUnit":"%","buttonText":"Search","buttonPosition":"button-inside","buttonUseIcon":true,"style":{"border":{"radius":"0px","width":"0px","style":"none"}},"textColor":"background"} /-->
|
||||
<!-- /wp:query-no-results --></div>
|
||||
<!-- /wp:query --></main>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","area":"footer"} /-->
|
77
grammer/templates/single.html
Normal file
77
grammer/templates/single.html
Normal file
|
@ -0,0 +1,77 @@
|
|||
<!-- wp:template-part {"slug":"header-minimal","area":"uncategorized"} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"0vh","bottom":"0vh"},"blockGap":"6vh"}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="margin-top:0vh;margin-bottom:0vh"><!-- wp:group {"align":"wide","style":{"spacing":{"blockGap":"px"}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignwide"><!-- wp:columns {"verticalAlignment":"top","align":"wide","style":{"spacing":{"blockGap":{"top":"1rem"}}}} -->
|
||||
<div class="wp-block-columns alignwide are-vertically-aligned-top"><!-- wp:column {"verticalAlignment":"top","width":"66.66%","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="flex-basis:66.66%"><!-- wp:post-featured-image {"aspectRatio":"1","align":"wide"} /--></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"top","width":"5%","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="flex-basis:5%"></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"top","width":"28.33%","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="flex-basis:28.33%"><!-- wp:group {"style":{"spacing":{"margin":{"bottom":"1.5rem"}}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
|
||||
<div class="wp-block-group" style="margin-bottom:1.5rem"><!-- wp:post-date {"format":"M j, Y","isLink":true,"style":{"spacing":{"padding":{"top":"0rem","bottom":"0rem"}}}} /-->
|
||||
|
||||
<!-- wp:post-content /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"post-meta","area":"uncategorized","align":"wide"} /--></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"align":"wide","style":{"spacing":{"blockGap":"px"}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignwide"><!-- wp:columns {"verticalAlignment":"top","align":"wide","style":{"spacing":{"blockGap":{"top":"1rem"}}}} -->
|
||||
<div class="wp-block-columns alignwide are-vertically-aligned-top"><!-- wp:column {"verticalAlignment":"top","width":"66.66%","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="flex-basis:66.66%"><!-- wp:comments {"className":"wp-block-comments-query-loop"} -->
|
||||
<div class="wp-block-comments wp-block-comments-query-loop"><!-- wp:comments-title {"showPostTitle":false} /-->
|
||||
|
||||
<!-- wp:comment-template {"style":{"spacing":{"padding":{"right":"0","left":"0"}}}} -->
|
||||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"0","bottom":"var:preset|spacing|50"},"padding":{"right":"0","left":"0"}}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group" style="margin-top:0;margin-bottom:var(--wp--preset--spacing--50);padding-right:0;padding-left:0"><!-- 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 {"style":{"spacing":{"margin":{"top":"0px","bottom":"0px"},"blockGap":"0.5em"}},"layout":{"type":"flex"}} -->
|
||||
<div class="wp-block-group" style="margin-top:0px;margin-bottom:0px"><!-- wp:comment-date {"format":"F j, Y \\a\\t g:i a"} /-->
|
||||
|
||||
<!-- wp:comment-edit-link /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:comment-content /-->
|
||||
|
||||
<!-- wp:comment-reply-link /--></div>
|
||||
<!-- /wp:group -->
|
||||
<!-- /wp:comment-template -->
|
||||
|
||||
<!-- wp:comments-pagination -->
|
||||
<!-- wp:comments-pagination-previous /-->
|
||||
|
||||
<!-- wp:comments-pagination-numbers /-->
|
||||
|
||||
<!-- wp:comments-pagination-next /-->
|
||||
<!-- /wp:comments-pagination -->
|
||||
|
||||
<!-- wp:post-comments-form /--></div>
|
||||
<!-- /wp:comments --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"top","width":"5%","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="flex-basis:5%"></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"top","width":"28.33%","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="flex-basis:28.33%"></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","area":"footer"} /-->
|
862
grammer/theme.json
Normal file
862
grammer/theme.json
Normal file
|
@ -0,0 +1,862 @@
|
|||
{
|
||||
"settings": {
|
||||
"blocks": {
|
||||
"core/cover": {
|
||||
"color": {
|
||||
"palette": [
|
||||
{
|
||||
"color": "#0c0c0e",
|
||||
"name": "Primary",
|
||||
"slug": "primary"
|
||||
},
|
||||
{
|
||||
"color": "#babac4",
|
||||
"name": "Secondary",
|
||||
"slug": "secondary"
|
||||
},
|
||||
{
|
||||
"color": "#d6d6dc",
|
||||
"name": "Foreground",
|
||||
"slug": "foreground"
|
||||
},
|
||||
{
|
||||
"color": "#f3f1f1",
|
||||
"name": "Background",
|
||||
"slug": "background"
|
||||
},
|
||||
{
|
||||
"color": "#fcfcfc1a",
|
||||
"name": "Tertiary",
|
||||
"slug": "tertiary"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"border": {
|
||||
"color": true,
|
||||
"radius": true,
|
||||
"style": true,
|
||||
"width": true
|
||||
},
|
||||
"color": {
|
||||
"background": true,
|
||||
"button": true,
|
||||
"caption": true,
|
||||
"custom": true,
|
||||
"customDuotone": true,
|
||||
"customGradient": true,
|
||||
"defaultDuotone": true,
|
||||
"defaultGradients": true,
|
||||
"defaultPalette": true,
|
||||
"duotone": [],
|
||||
"gradients": [],
|
||||
"heading": true,
|
||||
"link": true,
|
||||
"palette": [
|
||||
{
|
||||
"color": "#0c0c0e",
|
||||
"name": "Primary",
|
||||
"slug": "primary"
|
||||
},
|
||||
{
|
||||
"color": "#babac4",
|
||||
"name": "Secondary",
|
||||
"slug": "secondary"
|
||||
},
|
||||
{
|
||||
"color": "#d6d6dc",
|
||||
"name": "Foreground",
|
||||
"slug": "foreground"
|
||||
},
|
||||
{
|
||||
"color": "#f3f1f1",
|
||||
"name": "Background",
|
||||
"slug": "background"
|
||||
},
|
||||
{
|
||||
"color": "#fcfcfc1a",
|
||||
"name": "Tertiary",
|
||||
"slug": "tertiary"
|
||||
}
|
||||
],
|
||||
"text": true
|
||||
},
|
||||
"layout": {
|
||||
"contentSize": "800px",
|
||||
"wideSize": "1200px"
|
||||
},
|
||||
"shadow": {
|
||||
"defaultPresets": true,
|
||||
"presets": []
|
||||
},
|
||||
"spacing": {
|
||||
"blockGap": true,
|
||||
"customSpacingSize": true,
|
||||
"margin": true,
|
||||
"padding": true,
|
||||
"spacingScale": {
|
||||
"theme": {
|
||||
"increment": 1.5,
|
||||
"mediumStep": 1.5,
|
||||
"operator": "*",
|
||||
"steps": 7,
|
||||
"unit": "rem"
|
||||
}
|
||||
},
|
||||
"spacingSizes": [
|
||||
{
|
||||
"name": "2X-Small",
|
||||
"size": "0.44rem",
|
||||
"slug": "20"
|
||||
},
|
||||
{
|
||||
"name": "X-Small",
|
||||
"size": "0.67rem",
|
||||
"slug": "30"
|
||||
},
|
||||
{
|
||||
"name": "Small",
|
||||
"size": "1rem",
|
||||
"slug": "40"
|
||||
},
|
||||
{
|
||||
"name": "Medium",
|
||||
"size": "1.5rem",
|
||||
"slug": "50"
|
||||
},
|
||||
{
|
||||
"name": "Large",
|
||||
"size": "2.25rem",
|
||||
"slug": "60"
|
||||
},
|
||||
{
|
||||
"name": "X-Large",
|
||||
"size": "3.38rem",
|
||||
"slug": "70"
|
||||
},
|
||||
{
|
||||
"name": "2X-Large",
|
||||
"size": "5.06rem",
|
||||
"slug": "80"
|
||||
}
|
||||
],
|
||||
"units": [
|
||||
"%",
|
||||
"px",
|
||||
"em",
|
||||
"rem",
|
||||
"vh",
|
||||
"vw"
|
||||
]
|
||||
},
|
||||
"typography": {
|
||||
"customFontSize": true,
|
||||
"defaultFontSizes": false,
|
||||
"dropCap": true,
|
||||
"fluid": true,
|
||||
"fontFamilies": [
|
||||
{
|
||||
"fontFamily": "-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif",
|
||||
"name": "System Font",
|
||||
"slug": "system-font"
|
||||
},
|
||||
{
|
||||
"fontFace": [
|
||||
{
|
||||
"fontFamily": "Haskoy",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "400",
|
||||
"src": [
|
||||
"file:./assets/fonts/haskoy_normal_400.woff2"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Haskoy",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "400",
|
||||
"src": [
|
||||
"file:./assets/fonts/haskoy_italic_400.woff2"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Haskoy",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "700",
|
||||
"src": [
|
||||
"file:./assets/fonts/haskoy_normal_700.woff2"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Haskoy",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "700",
|
||||
"src": [
|
||||
"file:./assets/fonts/haskoy_italic_700.woff2"
|
||||
]
|
||||
}
|
||||
],
|
||||
"fontFamily": "Haskoy",
|
||||
"slug": "haskoy"
|
||||
},
|
||||
{
|
||||
"fontFace": [
|
||||
{
|
||||
"fontFamily": "Albert Sans",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "400",
|
||||
"src": [
|
||||
"file:./assets/fonts/albert-sans_normal_400.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Albert Sans",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "600",
|
||||
"src": [
|
||||
"file:./assets/fonts/albert-sans_normal_600.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Albert Sans",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "400",
|
||||
"src": [
|
||||
"file:./assets/fonts/albert-sans_italic_400.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Albert Sans",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "600",
|
||||
"src": [
|
||||
"file:./assets/fonts/albert-sans_italic_600.ttf"
|
||||
]
|
||||
}
|
||||
],
|
||||
"fontFamily": "Albert Sans",
|
||||
"slug": "albert-sans"
|
||||
}
|
||||
],
|
||||
"fontSizes": [
|
||||
{
|
||||
"fluid": {
|
||||
"max": "1.0625rem",
|
||||
"min": "0.825rem"
|
||||
},
|
||||
"name": "Small",
|
||||
"size": "1rem",
|
||||
"slug": "small"
|
||||
},
|
||||
{
|
||||
"fluid": {
|
||||
"max": "1.25rem",
|
||||
"min": "1rem"
|
||||
},
|
||||
"name": "Medium",
|
||||
"size": "1.125rem",
|
||||
"slug": "medium"
|
||||
},
|
||||
{
|
||||
"fluid": {
|
||||
"max": "2rem",
|
||||
"min": "1.75rem"
|
||||
},
|
||||
"name": "Large",
|
||||
"size": "1.75rem",
|
||||
"slug": "large"
|
||||
},
|
||||
{
|
||||
"fluid": {
|
||||
"max": "3rem",
|
||||
"min": "2.5rem"
|
||||
},
|
||||
"name": "Extra Large",
|
||||
"size": "3rem",
|
||||
"slug": "x-large"
|
||||
}
|
||||
],
|
||||
"fontStyle": true,
|
||||
"fontWeight": true,
|
||||
"letterSpacing": true,
|
||||
"lineHeight": true,
|
||||
"textDecoration": true,
|
||||
"textTransform": true
|
||||
},
|
||||
"useRootPaddingAwareAlignments": true
|
||||
},
|
||||
"styles": {
|
||||
"blocks": {
|
||||
"core/avatar": {
|
||||
"border": {
|
||||
"bottom": {
|
||||
"color": "var(--wp--preset--color--tertiary)",
|
||||
"style": "solid"
|
||||
},
|
||||
"left": {
|
||||
"color": "var(--wp--preset--color--tertiary)",
|
||||
"style": "solid"
|
||||
},
|
||||
"radius": "4px",
|
||||
"right": {
|
||||
"color": "var(--wp--preset--color--tertiary)",
|
||||
"style": "solid"
|
||||
},
|
||||
"top": {
|
||||
"color": "var(--wp--preset--color--tertiary)",
|
||||
"style": "solid"
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/code": {
|
||||
"border": {
|
||||
"color": "var(--wp--preset--color--foreground)",
|
||||
"radius": "0.25rem",
|
||||
"style": "solid",
|
||||
"width": "2px"
|
||||
},
|
||||
"spacing": {
|
||||
"padding": {
|
||||
"bottom": "var(--wp--preset--spacing--50)",
|
||||
"left": "var(--wp--preset--spacing--50)",
|
||||
"right": "var(--wp--preset--spacing--50)",
|
||||
"top": "var(--wp--preset--spacing--50)"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontFamily": "monospace"
|
||||
}
|
||||
},
|
||||
"core/comment-author-name": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--foreground)"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--foreground)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "700",
|
||||
"letterSpacing": "0rem",
|
||||
"lineHeight": "1.2"
|
||||
}
|
||||
},
|
||||
"core/comment-content": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--medium)",
|
||||
"lineHeight": "1.2"
|
||||
}
|
||||
},
|
||||
"core/comment-date": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"letterSpacing": "0rem",
|
||||
"lineHeight": "1.2"
|
||||
}
|
||||
},
|
||||
"core/comment-edit-link": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--foreground)"
|
||||
}
|
||||
},
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--secondary)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "700",
|
||||
"letterSpacing": "0rem",
|
||||
"lineHeight": "1.2",
|
||||
"textTransform": "none"
|
||||
}
|
||||
},
|
||||
"core/comment-reply-link": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--foreground)"
|
||||
}
|
||||
},
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--secondary)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "700",
|
||||
"letterSpacing": "0px",
|
||||
"lineHeight": "1.2",
|
||||
"textTransform": "none"
|
||||
}
|
||||
},
|
||||
"core/cover": {
|
||||
"border": {
|
||||
"radius": "4px"
|
||||
},
|
||||
"filter": {
|
||||
"duotone": "unset"
|
||||
}
|
||||
},
|
||||
"core/gallery": {
|
||||
"spacing": {
|
||||
"margin": {
|
||||
"bottom": "var(--wp--preset--spacing--50)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/heading": {
|
||||
"spacing": {
|
||||
"padding": {
|
||||
"bottom": "0rem",
|
||||
"top": "1rem"
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/list": {
|
||||
"spacing": {
|
||||
"padding": {
|
||||
"left": "var(--wp--preset--spacing--70)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/navigation": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/post-author-name": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/post-comments-form": {
|
||||
"spacing": {
|
||||
"padding": {
|
||||
"top": "3vh"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)"
|
||||
}
|
||||
},
|
||||
"core/post-content": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--background)"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--background)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--medium)",
|
||||
"lineHeight": "1.4"
|
||||
}
|
||||
},
|
||||
"core/post-date": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--secondary)"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--secondary)"
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "500",
|
||||
"lineHeight": "1.5"
|
||||
}
|
||||
},
|
||||
"core/post-excerpt": {
|
||||
"spacing": {
|
||||
"margin": {
|
||||
"bottom": "0px",
|
||||
"left": "0px",
|
||||
"right": "0px",
|
||||
"top": "0px"
|
||||
},
|
||||
"padding": {
|
||||
"bottom": "0px",
|
||||
"left": "0px",
|
||||
"right": "0px",
|
||||
"top": "0px"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"letterSpacing": "-1px",
|
||||
"textTransform": "uppercase"
|
||||
}
|
||||
},
|
||||
"core/post-featured-image": {
|
||||
"border": {
|
||||
"bottom": {
|
||||
"color": "var(--wp--preset--color--tertiary)",
|
||||
"style": "solid",
|
||||
"width": "1px"
|
||||
},
|
||||
"left": {
|
||||
"color": "var(--wp--preset--color--tertiary)",
|
||||
"style": "solid",
|
||||
"width": "1px"
|
||||
},
|
||||
"radius": "4px",
|
||||
"right": {
|
||||
"color": "var(--wp--preset--color--tertiary)",
|
||||
"style": "solid",
|
||||
"width": "1px"
|
||||
},
|
||||
"top": {
|
||||
"color": "var(--wp--preset--color--tertiary)",
|
||||
"style": "solid",
|
||||
"width": "1px"
|
||||
}
|
||||
},
|
||||
"spacing": {
|
||||
"margin": {
|
||||
"bottom": "0px",
|
||||
"left": "0px",
|
||||
"right": "0px",
|
||||
"top": "0px"
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/post-navigation-link": {
|
||||
"typography": {
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "700"
|
||||
}
|
||||
},
|
||||
"core/post-terms": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--secondary)"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--secondary)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "400",
|
||||
"lineHeight": "1.5"
|
||||
}
|
||||
},
|
||||
"core/post-title": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
"spacing": {
|
||||
"margin": {
|
||||
"bottom": "0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/pullquote": {
|
||||
"border": {
|
||||
"color": "var(--wp--preset--color--foreground)",
|
||||
"style": "solid",
|
||||
"width": "1px 0"
|
||||
},
|
||||
"spacing": {
|
||||
"padding": {
|
||||
"bottom": "var(--wp--preset--spacing--50)",
|
||||
"left": "var(--wp--preset--spacing--50)",
|
||||
"right": "var(--wp--preset--spacing--50)",
|
||||
"top": "var(--wp--preset--spacing--50)"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--large)",
|
||||
"fontStyle": "italic"
|
||||
}
|
||||
},
|
||||
"core/query-pagination-next": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--medium)"
|
||||
}
|
||||
},
|
||||
"core/query-pagination-previous": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--medium)"
|
||||
}
|
||||
},
|
||||
"core/query-title": {
|
||||
"spacing": {
|
||||
"padding": {
|
||||
"bottom": "2vh",
|
||||
"top": "2vh"
|
||||
}
|
||||
}
|
||||
},
|
||||
"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": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--medium)",
|
||||
"lineHeight": "1.6"
|
||||
}
|
||||
},
|
||||
"core/separator": {
|
||||
"border": {
|
||||
"color": "currentColor",
|
||||
"style": "solid",
|
||||
"width": "0 0 1px 0"
|
||||
},
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--foreground)"
|
||||
}
|
||||
},
|
||||
"core/site-tagline": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--medium)"
|
||||
}
|
||||
},
|
||||
"core/site-title": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--background)"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--background)"
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--medium)",
|
||||
"fontWeight": "700",
|
||||
"letterSpacing": "0rem"
|
||||
}
|
||||
},
|
||||
"core/spacer": {
|
||||
"spacing": {
|
||||
"margin": {
|
||||
"bottom": "0px",
|
||||
"top": "0px"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"color": {
|
||||
"background": "var(--wp--preset--color--primary)",
|
||||
"text": "var(--wp--preset--color--secondary)"
|
||||
},
|
||||
"elements": {
|
||||
"button": {
|
||||
":active": {
|
||||
"color": {
|
||||
"background": "var(--wp--preset--color--primary)",
|
||||
"text": "var(--wp--preset--color--background)"
|
||||
}
|
||||
},
|
||||
":focus": {
|
||||
"color": {
|
||||
"background": "var(--wp--preset--color--primary)",
|
||||
"text": "var(--wp--preset--color--background)"
|
||||
}
|
||||
},
|
||||
":hover": {
|
||||
"color": {
|
||||
"background": "var(--wp--preset--color--secondary)",
|
||||
"text": "var(--wp--preset--color--background)"
|
||||
}
|
||||
},
|
||||
"border": {
|
||||
"radius": "0.25rem"
|
||||
},
|
||||
"color": {
|
||||
"background": "var(--wp--preset--color--tertiary)",
|
||||
"text": "var(--wp--preset--color--foreground)"
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "600"
|
||||
}
|
||||
},
|
||||
"h1": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--large)",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "700",
|
||||
"letterSpacing": "0rem",
|
||||
"lineHeight": "1"
|
||||
}
|
||||
},
|
||||
"h2": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--medium)",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "700",
|
||||
"letterSpacing": "0rem",
|
||||
"lineHeight": "1"
|
||||
}
|
||||
},
|
||||
"h3": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--medium)",
|
||||
"letterSpacing": "0rem",
|
||||
"lineHeight": "1"
|
||||
}
|
||||
},
|
||||
"h4": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--medium)",
|
||||
"letterSpacing": "0rem",
|
||||
"lineHeight": "1"
|
||||
}
|
||||
},
|
||||
"h5": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--medium)",
|
||||
"letterSpacing": "0rem",
|
||||
"lineHeight": "1"
|
||||
}
|
||||
},
|
||||
"h6": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--medium)",
|
||||
"letterSpacing": "0rem",
|
||||
"lineHeight": "1"
|
||||
}
|
||||
},
|
||||
"heading": {
|
||||
"color": {
|
||||
"text": "#ffffff"
|
||||
},
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--rubik)",
|
||||
"fontWeight": "400",
|
||||
"letterSpacing": "0rem",
|
||||
"lineHeight": "1",
|
||||
"textTransform": "none"
|
||||
}
|
||||
},
|
||||
"link": {
|
||||
":hover": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--background)"
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
},
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--foreground)"
|
||||
},
|
||||
"typography": {
|
||||
"lineHeight": "1.2",
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
}
|
||||
},
|
||||
"spacing": {
|
||||
"blockGap": "1rem",
|
||||
"padding": {
|
||||
"bottom": "0rem",
|
||||
"left": "1rem",
|
||||
"right": "1rem",
|
||||
"top": "0rem"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--haskoy)",
|
||||
"fontSize": "var(--wp--preset--font-size--medium)",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "400",
|
||||
"letterSpacing": "0rem",
|
||||
"lineHeight": "1.2"
|
||||
}
|
||||
},
|
||||
"templateParts": [
|
||||
{
|
||||
"area": "header",
|
||||
"name": "header"
|
||||
},
|
||||
{
|
||||
"area": "footer",
|
||||
"name": "footer"
|
||||
}
|
||||
],
|
||||
"version": 3,
|
||||
"$schema": "https://schemas.wp.org/trunk/theme.json"
|
||||
}
|
|
@ -1,3 +1,4 @@
|
|||
<?php declare( strict_types = 1 ); ?>
|
||||
<?php
|
||||
/**
|
||||
* Layover functions and definitions
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
<?php declare( strict_types = 1 ); ?>
|
||||
<?php
|
||||
/**
|
||||
* Title: 404
|
||||
|
@ -6,10 +7,11 @@
|
|||
* Inserter: no
|
||||
*/
|
||||
?>
|
||||
<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
|
||||
<!-- wp:group {"style":{"dimensions":{"minHeight":"100vh"}},"backgroundColor":"primary","layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group has-primary-background-color has-background" style="min-height:100vh"><!-- wp:template-part {"slug":"header","tagName":"header"} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"bottom":"4rem","top":"4rem"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-top:4rem;padding-bottom:4rem"><!-- wp:group -->
|
||||
<!-- wp:group {"tagName":"main","style":{"spacing":{"padding":{"bottom":"4rem","top":"4rem"}}},"layout":{"type":"constrained"}} -->
|
||||
<main class="wp-block-group" style="padding-top:4rem;padding-bottom:4rem"><!-- wp:group -->
|
||||
<div class="wp-block-group"><!-- wp:group {"style":{"spacing":{"blockGap":"0rem"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"center"}} -->
|
||||
<div class="wp-block-group"><!-- wp:heading {"textAlign":"center","level":1,"align":"wide"} -->
|
||||
<h1 class="wp-block-heading alignwide has-text-align-center" id="oops-that-page-can-t-be-found"><?php echo __('Oops!', 'layover');?></h1>
|
||||
|
@ -25,7 +27,8 @@
|
|||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:search {"showLabel":false,"placeholder":"SEARCH","buttonPosition":"button-inside","buttonUseIcon":true,"style":{"border":{"width":"0px","style":"none"}}} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></main>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /--></div>
|
||||
<!-- /wp:group -->
|
|
@ -1,3 +1,4 @@
|
|||
<?php declare( strict_types = 1 ); ?>
|
||||
<?php
|
||||
/**
|
||||
* Title: Comments
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
<?php declare( strict_types = 1 ); ?>
|
||||
<?php
|
||||
/**
|
||||
* Title: footer
|
||||
|
@ -7,7 +8,7 @@
|
|||
*/
|
||||
?>
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"bottom":"4rem","top":"4rem"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-top:4rem;padding-bottom:4rem"><!-- wp:paragraph {"align":"center"} -->
|
||||
<p class="has-text-align-center"><?php echo __('Designed with <a href="https://wordpress.org" rel="nofollow">WordPress</a>.', 'layover');?></p>
|
||||
<div class="wp-block-group" style="padding-top:4rem;padding-bottom:4rem"><!-- wp:paragraph {"align":"center","style":{"elements":{"link":{"color":{"text":"var:preset|color|foreground"}}}},"textColor":"foreground"} -->
|
||||
<p class="has-text-align-center has-foreground-color has-text-color has-link-color"><?php echo __('Designed with <a href="https://wordpress.org" rel="nofollow">WordPress</a>.', 'layover');?></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group -->
|
|
@ -1,3 +1,4 @@
|
|||
<?php declare( strict_types = 1 ); ?>
|
||||
<?php
|
||||
/**
|
||||
* Title: header
|
||||
|
@ -14,8 +15,8 @@
|
|||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"dimensions":{"minHeight":""}},"layout":{"type":"constrained","contentSize":"40px"}} -->
|
||||
<div class="wp-block-group"><!-- wp:group {"style":{"spacing":{"blockGap":"0.5rem","padding":{"top":"2px","right":"2px","bottom":"2px","left":"2px"}},"border":{"top":{"width":"1px"},"bottom":{"width":"1px"}},"dimensions":{"minHeight":""}},"layout":{"type":"constrained","contentSize":""}} -->
|
||||
<div class="wp-block-group" style="border-top-width:1px;border-bottom-width:1px;padding-top:2px;padding-right:2px;padding-bottom:2px;padding-left:2px"></div>
|
||||
<div class="wp-block-group"><!-- wp:group {"style":{"spacing":{"blockGap":"0.5rem","padding":{"top":"2px","right":"2px","bottom":"2px","left":"2px"}},"border":{"top":{"color":"var:preset|color|foreground","width":"1px"},"bottom":{"color":"var:preset|color|foreground","width":"1px"},"right":[],"left":[]},"dimensions":{"minHeight":""}},"layout":{"type":"constrained","contentSize":""}} -->
|
||||
<div class="wp-block-group" style="border-top-color:var(--wp--preset--color--foreground);border-top-width:1px;border-bottom-color:var(--wp--preset--color--foreground);border-bottom-width:1px;padding-top:2px;padding-right:2px;padding-bottom:2px;padding-left:2px"></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
<?php declare( strict_types = 1 ); ?>
|
||||
<?php
|
||||
/**
|
||||
* Title: Hidden No Results Content
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
<?php declare( strict_types = 1 ); ?>
|
||||
<?php
|
||||
/**
|
||||
* Title: home
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
Theme Name: Layover
|
||||
Theme URI:
|
||||
Author: Automattic
|
||||
Author URI: https://wordpress.org
|
||||
Author URI: https://automattic.com
|
||||
Description: Layover displays large titles and excerpts that scroll over an image on the Homepage and neat single pages for users who want their blogging to be simple.
|
||||
Requires at least: 5.8
|
||||
Tested up to: 6.5
|
||||
Requires PHP: 5.7
|
||||
Version: 1.0
|
||||
Version: 1.0.2
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Text Domain: layover
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
|
||||
<!-- wp:group {"style":{"dimensions":{"minHeight":"100vh"}},"backgroundColor":"primary","layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group has-primary-background-color has-background" style="min-height:100vh"><!-- wp:template-part {"slug":"header","tagName":"header"} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"bottom":"4rem"},"margin":{"top":"4rem"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="margin-top:4rem;padding-bottom:4rem"><!-- wp:query {"queryId":5,"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true,"taxQuery":null,"parents":[]},"tagName":"main","align":"wide","layout":{"type":"constrained"}} -->
|
||||
<!-- wp:group {"tagName":"main","style":{"spacing":{"padding":{"bottom":"4rem"},"margin":{"top":"4rem"}}},"layout":{"type":"constrained"}} -->
|
||||
<main class="wp-block-group" style="margin-top:4rem;padding-bottom:4rem"><!-- wp:query {"queryId":5,"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true,"taxQuery":null,"parents":[]},"tagName":"main","align":"wide","layout":{"type":"constrained"}} -->
|
||||
<main class="wp-block-query alignwide"><!-- wp:query-title {"type":"archive","textAlign":"center","align":"wide"} /-->
|
||||
|
||||
<!-- wp:post-template {"align":"wide","style":{"spacing":{"blockGap":"8rem"}}} -->
|
||||
|
@ -17,7 +18,7 @@
|
|||
<!-- /wp:post-template -->
|
||||
|
||||
<!-- wp:group {"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group"><!-- wp:query-pagination {"layout":{"type":"flex","justifyContent":"center"},"fontSize":"large"} -->
|
||||
<div class="wp-block-group"><!-- wp:query-pagination {"style":{"elements":{"link":{"color":{"text":"var:preset|color|foreground"}}}},"textColor":"foreground","fontSize":"large","layout":{"type":"flex","justifyContent":"center"}} -->
|
||||
<!-- wp:query-pagination-previous {"label":"PREV"} /-->
|
||||
|
||||
<!-- wp:query-pagination-numbers /-->
|
||||
|
@ -25,7 +26,8 @@
|
|||
<!-- wp:query-pagination-next {"label":"NEX"} /-->
|
||||
<!-- /wp:query-pagination --></div>
|
||||
<!-- /wp:group --></main>
|
||||
<!-- /wp:query --></div>
|
||||
<!-- /wp:query --></main>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /--></div>
|
||||
<!-- /wp:group -->
|
|
@ -1,7 +1,8 @@
|
|||
<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
|
||||
<!-- wp:group {"style":{"dimensions":{"minHeight":"100vh"}},"backgroundColor":"primary","layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group has-primary-background-color has-background" style="min-height:100vh"><!-- wp:template-part {"slug":"header","tagName":"header"} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"bottom":"4rem"},"margin":{"top":"4rem"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="margin-top:4rem;padding-bottom:4rem"><!-- wp:query {"queryId":5,"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true,"taxQuery":null,"parents":[]},"tagName":"main","align":"wide","layout":{"type":"constrained"}} -->
|
||||
<!-- wp:group {"tagName":"main","style":{"spacing":{"padding":{"bottom":"4rem"},"margin":{"top":"4rem"}}},"layout":{"type":"constrained"}} -->
|
||||
<main class="wp-block-group" style="margin-top:4rem;padding-bottom:4rem"><!-- wp:query {"queryId":5,"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true,"taxQuery":null,"parents":[]},"tagName":"main","align":"wide","layout":{"type":"constrained"}} -->
|
||||
<main class="wp-block-query alignwide"><!-- wp:post-template {"align":"wide","style":{"spacing":{"blockGap":"8rem"}}} -->
|
||||
<!-- wp:group {"style":{"spacing":{"blockGap":"2rem"}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group"><!-- wp:post-featured-image {"isLink":true,"aspectRatio":"1","width":"40%"} /-->
|
||||
|
@ -15,7 +16,7 @@
|
|||
<!-- /wp:post-template -->
|
||||
|
||||
<!-- wp:group {"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group"><!-- wp:query-pagination {"layout":{"type":"flex","justifyContent":"center"},"fontSize":"large"} -->
|
||||
<div class="wp-block-group"><!-- wp:query-pagination {"style":{"elements":{"link":{"color":{"text":"var:preset|color|foreground"}}}},"textColor":"foreground","fontSize":"large","layout":{"type":"flex","justifyContent":"center"}} -->
|
||||
<!-- wp:query-pagination-previous {"label":"PREV"} /-->
|
||||
|
||||
<!-- wp:query-pagination-numbers /-->
|
||||
|
@ -23,7 +24,8 @@
|
|||
<!-- wp:query-pagination-next {"label":"NEX"} /-->
|
||||
<!-- /wp:query-pagination --></div>
|
||||
<!-- /wp:group --></main>
|
||||
<!-- /wp:query --></div>
|
||||
<!-- /wp:query --></main>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /--></div>
|
||||
<!-- /wp:group -->
|
|
@ -1,7 +1,9 @@
|
|||
<!-- wp:template-part {"slug":"header","tagName":"header","align":"wide"} /-->
|
||||
<!-- wp:group {"align":"wide","style":{"dimensions":{"minHeight":"100vh"}},"backgroundColor":"primary","layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignwide has-primary-background-color has-background" style="min-height:100vh"><!-- wp:template-part {"slug":"header","tagName":"header","align":"wide"} /-->
|
||||
|
||||
<!-- wp:group {"align":"wide","style":{"border":{"top":[],"right":{"width":"1rem","style":"solid"},"bottom":[],"left":{"width":"1rem","style":"solid"}},"spacing":{"padding":{"bottom":"4rem","top":"4rem"},"margin":{"top":"4rem","bottom":"0rem"}}},"backgroundColor":"foreground","textColor":"primary","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignwide has-primary-color has-foreground-background-color has-text-color has-background" style="border-right-style:solid;border-right-width:1rem;border-left-style:solid;border-left-width:1rem;margin-top:4rem;margin-bottom:0rem;padding-top:4rem;padding-bottom:4rem"><!-- wp:post-content {"lock":{"move":false,"remove":false},"align":"wide","layout":{"type":"default"}} /--></div>
|
||||
<!-- wp:group {"tagName":"main","align":"wide","style":{"border":{"top":[],"right":{"width":"1rem","style":"solid"},"bottom":[],"left":{"width":"1rem","style":"solid"}},"spacing":{"padding":{"bottom":"4rem","top":"4rem"},"margin":{"top":"4rem","bottom":"0rem"}}},"backgroundColor":"foreground","textColor":"primary","layout":{"type":"constrained"}} -->
|
||||
<main class="wp-block-group alignwide has-primary-color has-foreground-background-color has-text-color has-background" style="border-right-style:solid;border-right-width:1rem;border-left-style:solid;border-left-width:1rem;margin-top:4rem;margin-bottom:0rem;padding-top:4rem;padding-bottom:4rem"><!-- wp:post-content {"lock":{"move":false,"remove":false},"align":"wide","layout":{"type":"constrained"}} /--></main>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer","align":"wide"} /-->
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer","align":"wide"} /--></div>
|
||||
<!-- /wp:group -->
|
|
@ -1,7 +1,8 @@
|
|||
<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
|
||||
<!-- wp:group {"style":{"dimensions":{"minHeight":"100vh"}},"backgroundColor":"primary","layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group has-primary-background-color has-background" style="min-height:100vh"><!-- wp:template-part {"slug":"header","tagName":"header"} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"bottom":"4rem"},"margin":{"top":"4rem"},"blockGap":"4rem"}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="margin-top:4rem;padding-bottom:4rem"><!-- wp:group {"layout":{"type":"flex","orientation":"vertical","justifyContent":"center"}} -->
|
||||
<!-- wp:group {"tagName":"main","style":{"spacing":{"padding":{"bottom":"4rem"},"margin":{"top":"4rem"},"blockGap":"4rem"}},"layout":{"type":"constrained"}} -->
|
||||
<main class="wp-block-group" style="margin-top:4rem;padding-bottom:4rem"><!-- wp:group {"layout":{"type":"flex","orientation":"vertical","justifyContent":"center"}} -->
|
||||
<div class="wp-block-group"><!-- wp:search {"showLabel":false,"placeholder":"SEARCH","width":100,"widthUnit":"%","buttonPosition":"button-inside","buttonUseIcon":true,"style":{"border":{"width":"0px","style":"none"}}} /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
|
@ -21,7 +22,7 @@
|
|||
<!-- /wp:post-template -->
|
||||
|
||||
<!-- wp:group {"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group"><!-- wp:query-pagination {"layout":{"type":"flex","justifyContent":"center"},"fontSize":"large"} -->
|
||||
<div class="wp-block-group"><!-- wp:query-pagination {"fontSize":"large","layout":{"type":"flex","justifyContent":"center"}} -->
|
||||
<!-- wp:query-pagination-previous {"label":"PREV"} /-->
|
||||
|
||||
<!-- wp:query-pagination-numbers /-->
|
||||
|
@ -29,7 +30,8 @@
|
|||
<!-- wp:query-pagination-next {"label":"NEX"} /-->
|
||||
<!-- /wp:query-pagination --></div>
|
||||
<!-- /wp:group --></main>
|
||||
<!-- /wp:query --></div>
|
||||
<!-- /wp:query --></main>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /--></div>
|
||||
<!-- /wp:group -->
|
|
@ -1,10 +1,11 @@
|
|||
<!-- wp:template-part {"slug":"header","tagName":"header","align":"wide"} /-->
|
||||
<!-- wp:group {"align":"wide","style":{"dimensions":{"minHeight":"100vh"}},"backgroundColor":"primary","layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignwide has-primary-background-color has-background" style="min-height:100vh"><!-- wp:template-part {"slug":"header","tagName":"header","align":"wide"} /-->
|
||||
|
||||
<!-- wp:group {"align":"wide","style":{"border":{"top":[],"right":{"width":"1rem","style":"solid"},"bottom":[],"left":{"width":"1rem","style":"solid"}},"spacing":{"padding":{"bottom":"4rem"},"margin":{"top":"4rem","bottom":"0rem"}}},"backgroundColor":"foreground","textColor":"primary","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignwide has-primary-color has-foreground-background-color has-text-color has-background" style="border-right-style:solid;border-right-width:1rem;border-left-style:solid;border-left-width:1rem;margin-top:4rem;margin-bottom:0rem;padding-bottom:4rem"><!-- wp:group {"align":"wide","style":{"spacing":{"blockGap":"4rem","padding":{"top":"0rem","right":"0rem","bottom":"0rem","left":"0rem"},"margin":{"top":"0rem","bottom":"0rem"}}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignwide" style="margin-top:0rem;margin-bottom:0rem;padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem"><!-- wp:post-featured-image /-->
|
||||
<!-- wp:group {"tagName":"main","align":"wide","style":{"border":{"top":[],"right":{"width":"1rem","style":"solid"},"bottom":[],"left":{"width":"1rem","style":"solid"}},"spacing":{"padding":{"bottom":"4rem"},"margin":{"top":"4rem","bottom":"0rem"}}},"backgroundColor":"foreground","textColor":"primary","layout":{"type":"constrained"}} -->
|
||||
<main class="wp-block-group alignwide has-primary-color has-foreground-background-color has-text-color has-background" style="border-right-style:solid;border-right-width:1rem;border-left-style:solid;border-left-width:1rem;margin-top:4rem;margin-bottom:0rem;padding-bottom:4rem"><!-- wp:group {"align":"wide","style":{"spacing":{"blockGap":"4rem","padding":{"top":"0rem","right":"0rem","bottom":"0rem","left":"0rem"},"margin":{"top":"0rem","bottom":"0rem"}}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignwide" style="margin-top:0rem;margin-bottom:0rem;padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem"><!-- wp:post-featured-image {"height":"50vh"} /-->
|
||||
|
||||
<!-- wp:post-title {"textAlign":"center","level":1,"align":"wide","style":{"elements":{"link":{"color":{"text":"var:preset|color|primary"}}}},"textColor":"primary"} /-->
|
||||
<!-- wp:post-title {"textAlign":"center","level":1,"isLink":true,"align":"wide","style":{"elements":{"link":{"color":{"text":"var:preset|color|primary"}}}},"textColor":"primary"} /-->
|
||||
|
||||
<!-- wp:post-content {"lock":{"move":false,"remove":false},"align":"wide","layout":{"type":"default"}} /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
@ -43,7 +44,8 @@
|
|||
<!-- /wp:comments-pagination -->
|
||||
|
||||
<!-- wp:post-comments-form {"style":{"elements":{"link":{"color":{"text":"var:preset|color|primary"}}}},"textColor":"primary"} /--></div>
|
||||
<!-- /wp:comments --></div>
|
||||
<!-- /wp:comments --></main>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer","align":"wide"} /-->
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer","align":"wide"} /--></div>
|
||||
<!-- /wp:group -->
|
|
@ -102,7 +102,7 @@
|
|||
"text": true
|
||||
},
|
||||
"layout": {
|
||||
"contentSize": "600px",
|
||||
"contentSize": "640px",
|
||||
"wideSize": "900px"
|
||||
},
|
||||
"shadow": {
|
||||
|
@ -443,6 +443,16 @@
|
|||
}
|
||||
},
|
||||
"core/post-content": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--primary)"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--primary)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"spacing": {
|
||||
"blockGap": "1.5rem"
|
||||
},
|
||||
|
@ -629,8 +639,8 @@
|
|||
}
|
||||
},
|
||||
"color": {
|
||||
"background": "var(--wp--preset--color--primary)",
|
||||
"text": "var(--wp--preset--color--foreground)"
|
||||
"background": "var(--wp--preset--color--foreground)",
|
||||
"text": "var(--wp--preset--color--primary)"
|
||||
},
|
||||
"elements": {
|
||||
"button": {
|
||||
|
|
|
@ -12,6 +12,9 @@ Luminance is a bold blogging theme with opinionated typography and unique aesthe
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.3 =
|
||||
* Luminance: Fix display of featured images (#8023)
|
||||
|
||||
= 1.0.2 =
|
||||
* Luminance: Update it for submission (#7735)
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ Description: Luminance is a bold blogging theme with opinionated typography and
|
|||
Requires at least: 6.0
|
||||
Tested up to: 6.5
|
||||
Requires PHP: 5.7
|
||||
Version: 1.0.2
|
||||
Version: 1.0.3
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Text Domain: luminance
|
||||
|
|
|
@ -507,9 +507,6 @@
|
|||
"core/post-excerpt": {
|
||||
"css": ".wp-block-post-excerpt .wp-block-post-excerpt__excerpt{line-height: inherit;}"
|
||||
},
|
||||
"core/post-featured-image": {
|
||||
"css": ".wp-block-post-featured-image img{vertical-align:top;width: auto;}"
|
||||
},
|
||||
"core/post-navigation-link": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
|
@ -794,7 +791,8 @@
|
|||
"fontFamily": "var(--wp--preset--font-family--instrument-sans)",
|
||||
"fontSize": "var(--wp--preset--font-size--medium)",
|
||||
"lineHeight": "1.388888889"
|
||||
}
|
||||
},
|
||||
"css": ".wp-block-post-featured-image img{vertical-align:top;width: auto;}"
|
||||
},
|
||||
"templateParts": [
|
||||
{
|
||||
|
|
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "themes",
|
||||
"version": "1.0.560",
|
||||
"version": "1.0.562",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "themes",
|
||||
"version": "1.0.560",
|
||||
"version": "1.0.562",
|
||||
"license": "GPL-2.0",
|
||||
"workspaces": [
|
||||
"*"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "themes",
|
||||
"version": "1.0.560",
|
||||
"version": "1.0.562",
|
||||
"description": "Automattic public themes",
|
||||
"author": "automattic",
|
||||
"license": "GPL-2.0",
|
||||
|
|
BIN
partygurl/assets/fonts/texgyreheroscn-bold.otf
Normal file
BIN
partygurl/assets/fonts/texgyreheroscn-bold.otf
Normal file
Binary file not shown.
BIN
partygurl/assets/fonts/texgyreheroscn-bolditalic.otf
Normal file
BIN
partygurl/assets/fonts/texgyreheroscn-bolditalic.otf
Normal file
Binary file not shown.
BIN
partygurl/assets/fonts/texgyreheroscn-italic.otf
Normal file
BIN
partygurl/assets/fonts/texgyreheroscn-italic.otf
Normal file
Binary file not shown.
BIN
partygurl/assets/fonts/texgyreheroscn-regular.otf
Normal file
BIN
partygurl/assets/fonts/texgyreheroscn-regular.otf
Normal file
Binary file not shown.
61
partygurl/functions.php
Normal file
61
partygurl/functions.php
Normal file
|
@ -0,0 +1,61 @@
|
|||
<?php declare( strict_types = 1 ); ?>
|
||||
<?php
|
||||
/**
|
||||
* Partygurl functions and definitions
|
||||
*
|
||||
* @link https://developer.wordpress.org/themes/basics/theme-functions/
|
||||
*
|
||||
* @package Partygurl
|
||||
* @since Partygurl 1.0
|
||||
*/
|
||||
|
||||
|
||||
if ( ! function_exists( 'partygurl_support' ) ) :
|
||||
|
||||
/**
|
||||
* Sets up theme defaults and registers support for various WordPress features.
|
||||
*
|
||||
* @since Partygurl 1.0
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function partygurl_support() {
|
||||
|
||||
// Enqueue editor styles.
|
||||
add_editor_style( 'style.css' );
|
||||
|
||||
// Make theme available for translation.
|
||||
load_theme_textdomain( 'partygurl' );
|
||||
}
|
||||
|
||||
endif;
|
||||
|
||||
add_action( 'after_setup_theme', 'partygurl_support' );
|
||||
|
||||
if ( ! function_exists( 'partygurl_styles' ) ) :
|
||||
|
||||
/**
|
||||
* Enqueue styles.
|
||||
*
|
||||
* @since Partygurl 1.0
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function partygurl_styles() {
|
||||
|
||||
// Register theme stylesheet.
|
||||
wp_register_style(
|
||||
'partygurl-style',
|
||||
get_stylesheet_directory_uri() . '/style.css',
|
||||
array(),
|
||||
wp_get_theme()->get( 'Version' )
|
||||
);
|
||||
|
||||
// Enqueue theme stylesheet.
|
||||
wp_enqueue_style( 'partygurl-style' );
|
||||
|
||||
}
|
||||
|
||||
endif;
|
||||
|
||||
add_action( 'wp_enqueue_scripts', 'partygurl_styles' );
|
1
partygurl/parts/footer.html
Normal file
1
partygurl/parts/footer.html
Normal file
|
@ -0,0 +1 @@
|
|||
<!-- wp:pattern {"slug":"partygurl/footer"} /-->
|
7
partygurl/parts/header.html
Normal file
7
partygurl/parts/header.html
Normal file
|
@ -0,0 +1,7 @@
|
|||
<!-- wp:group {"style":{"spacing":{"blockGap":"10px","padding":{"bottom":"3vh","top":"3vh"}}},"layout":{"type":"constrained","justifyContent":"center"}} -->
|
||||
<div class="wp-block-group" style="padding-top:3vh;padding-bottom:3vh"><!-- wp:group {"style":{"spacing":{"blockGap":"20px"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"center"}} -->
|
||||
<div class="wp-block-group"><!-- wp:site-title {"textAlign":"center"} /-->
|
||||
|
||||
<!-- wp:navigation {"hasIcon":false,"overlayBackgroundColor":"base","overlayTextColor":"contrast","style":{"spacing":{"margin":{"top":"0"},"blockGap":"14px"}},"fontSize":"small","layout":{"type":"flex","setCascadingProperties":true,"justifyContent":"center","orientation":"horizontal"}} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
1
partygurl/parts/post-meta.html
Normal file
1
partygurl/parts/post-meta.html
Normal file
|
@ -0,0 +1 @@
|
|||
<!-- wp:pattern {"slug":"partygurl/post-meta"} /-->
|
14
partygurl/patterns/404.php
Normal file
14
partygurl/patterns/404.php
Normal file
|
@ -0,0 +1,14 @@
|
|||
<?php declare( strict_types = 1 ); ?>
|
||||
<?php
|
||||
/**
|
||||
* Title: A 404 page
|
||||
* Slug: partygurl/404
|
||||
*/
|
||||
?>
|
||||
<!-- wp:group {"tagName":"main","style":{"spacing":{"blockGap":"var:preset|spacing|50","margin":{"top":"var:preset|spacing|80","bottom":"var:preset|spacing|60"}}},"layout":{"type":"constrained"}} -->
|
||||
<main class="wp-block-group" style="margin-top:var(--wp--preset--spacing--80);margin-bottom:var(--wp--preset--spacing--60)"><!-- wp:heading {"textAlign":"center","level":1,"fontSize":"x-large"} -->
|
||||
<h1 class="wp-block-heading has-text-align-center has-x-large-font-size" id="oops-that-page-can-t-be-found"><?php echo esc_html__( 'wth?! nothing was found', 'partygurl' ); ?></h1>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:search {"label":"","showLabel":false,"placeholder":"<?php echo esc_html__( 'type something...', 'partygurl' ); ?>","width":100,"widthUnit":"%","buttonText":"<?php echo esc_html__( 'show me the good stuff', 'partygurl' ); ?>","align":"center","style":{"border":{"radius":"0px","width":"0px","style":"none"},"typography":{"textTransform":"lowercase"}}} /--></main>
|
||||
<!-- /wp:group -->
|
30
partygurl/patterns/footer.php
Normal file
30
partygurl/patterns/footer.php
Normal file
|
@ -0,0 +1,30 @@
|
|||
<?php declare( strict_types = 1 ); ?>
|
||||
<?php
|
||||
/**
|
||||
* Title: Footer
|
||||
* Slug: partygurl/footer
|
||||
* Categories: footer
|
||||
*/
|
||||
?>
|
||||
<!-- wp:spacer -->
|
||||
<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer -->
|
||||
|
||||
<!-- wp:group {"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"var(\u002d\u002dwp\u002d\u002dpreset\u002d\u002dspacing\u002d\u002d60)","bottom":"var(\u002d\u002dwp\u002d\u002dpreset\u002d\u002dspacing\u002d\u002d60)"},"blockGap":"8px"}}} -->
|
||||
<div class="wp-block-group alignfull" style="padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60)"><!-- wp:site-title {"textAlign":"center","fontSize":"large"} /-->
|
||||
|
||||
<!-- wp:paragraph {"align":"center","style":{"typography":{"fontSize":"0.9rem"}}} -->
|
||||
<p class="has-text-align-center" style="font-size:0.9rem">
|
||||
<?php
|
||||
/* Translators: WordPress link. */
|
||||
$wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'adonay' ) ) . '" rel="nofollow">WordPress</a>';
|
||||
echo sprintf(
|
||||
esc_html__( 'fyi, this theme was made with %1$s', 'adonay' ),
|
||||
$wordpress_link
|
||||
);
|
||||
?> ❤️🔥
|
||||
</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
13
partygurl/patterns/hidden-no-results-content.php
Normal file
13
partygurl/patterns/hidden-no-results-content.php
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?php declare( strict_types = 1 ); ?>
|
||||
<?php
|
||||
/**
|
||||
* Title: Hidden No Results Content
|
||||
* Slug: partygurl/hidden-no-results-content
|
||||
* Inserter: no
|
||||
*/
|
||||
?>
|
||||
|
||||
<!-- wp:paragraph {"align":"center"} -->
|
||||
<p class="has-text-align-center pickles"><?php echo esc_html_x( 'Sorry, but no thing matched your search terms. Please try again with some different keywords.', 'Message explaining that there are no results returned from a search', 'partygurl' ); ?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
19
partygurl/patterns/post-meta.php
Normal file
19
partygurl/patterns/post-meta.php
Normal file
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: post-meta
|
||||
* Slug: partygurl/post-meta
|
||||
* Categories: hidden
|
||||
* Inserter: no
|
||||
*/
|
||||
?>
|
||||
<!-- wp:group {"style":{"spacing":{"blockGap":"6px"}},"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"center"}} -->
|
||||
<div class="wp-block-group"><!-- wp:group {"style":{"spacing":{"blockGap":"0.2rem"}},"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"center"}} -->
|
||||
<div class="wp-block-group"><!-- wp:post-date {"isLink":true,"style":{"typography":[]}} /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"0.97rem"}}} -->
|
||||
<p style="font-size:0.97rem"><?php esc_html_e('/', 'partygurl');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:post-terms {"term":"category","style":{"typography":{"fontSize":"0.94rem"}}} /--></div>
|
||||
<!-- /wp:group -->
|
46
partygurl/readme.txt
Normal file
46
partygurl/readme.txt
Normal file
|
@ -0,0 +1,46 @@
|
|||
== Partygurl ==
|
||||
|
||||
Contributors: Automattic
|
||||
Requires at least: 6.0
|
||||
Tested up to: 6.6
|
||||
Requires PHP: 5.7
|
||||
License: GPLv2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
|
||||
|
||||
== Description ==
|
||||
|
||||
Partygurl embodies a bold and rebellious aesthetic, inspired by edgy, chaotic fun and the unapologetic “brat” energy popularized by cultural trends.
|
||||
|
||||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 =
|
||||
* Initial release
|
||||
|
||||
|
||||
== Copyright ==
|
||||
|
||||
Partygurl WordPress Theme, (C) 2024 Automattic
|
||||
Partygurl 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.
|
||||
|
||||
|
||||
Partygurl is based on Didone (https://github.com/Automattic/themes/tree/trunk/didone), (C) Automattic, [GPLv2 or later](http://www.gnu.org/licenses/gpl-2.0.html)
|
||||
|
||||
== Fonts ==
|
||||
Tex Gyre Heros Font
|
||||
Copyright 2007--2009 for TeX Gyre extensions by B. Jackowski
|
||||
and J.M. Nowacki (on behalf of TeX Users Groups). Vietnamese characters were added by Han The Thanh.
|
||||
This work can be freely used and distributed under the GUST Font License (GFL -- see GUST-FONT-LICENSE.txt)
|
||||
which is actually an instance of the LaTeX Project Public License (LPPL -- see http://www.latex-project.org/lppl.txt ).
|
||||
-- End of Tex Gyre Heros Font Font credits --
|
BIN
partygurl/screenshot.png
Normal file
BIN
partygurl/screenshot.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 133 KiB |
51
partygurl/style.css
Normal file
51
partygurl/style.css
Normal file
|
@ -0,0 +1,51 @@
|
|||
/*
|
||||
Theme Name: Partygurl
|
||||
Theme URI: https://themeshaper.com/partygurl/
|
||||
Author: Automattic
|
||||
Author URI: https://automattic.com
|
||||
Description: Partygurl embodies a bold and rebellious aesthetic, inspired by edgy, chaotic fun and the unapologetic “brat” energy popularized by cultural trends.
|
||||
Requires at least: 6.0
|
||||
Tested up to: 6.6
|
||||
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: partygurl
|
||||
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, theme-options, threaded-comments, translation-ready, wide-blocks
|
||||
|
||||
/*
|
||||
* 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: 0.06em !important;
|
||||
text-underline-offset: .1em;
|
||||
}
|
||||
|
||||
/* Progresive enhancement to reduce widows and orphans.
|
||||
/* https://github.com/WordPress/gutenberg/issues/55190
|
||||
*/
|
||||
h1, h2, h3, h4, h5, h6, blockquote, caption, figcaption {
|
||||
text-wrap: balance; /* Safari fallback */
|
||||
text-wrap: pretty;
|
||||
}
|
||||
p {
|
||||
text-wrap: pretty;
|
||||
}
|
5
partygurl/templates/404.html
Normal file
5
partygurl/templates/404.html
Normal file
|
@ -0,0 +1,5 @@
|
|||
<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
|
||||
|
||||
<!-- wp:pattern {"slug":"partygurl/404"} /-->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->
|
31
partygurl/templates/archive.html
Normal file
31
partygurl/templates/archive.html
Normal file
|
@ -0,0 +1,31 @@
|
|||
<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
|
||||
|
||||
<!-- wp:spacer {"height":"40px"} -->
|
||||
<div style="height:40px" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer -->
|
||||
|
||||
<!-- wp:query {"queryId":1,"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true,"taxQuery":null,"parents":[]},"tagName":"main","layout":{"type":"default"}} -->
|
||||
<main class="wp-block-query"><!-- wp:query-title {"type":"archive","textAlign":"center","style":{"spacing":{"margin":{"bottom":"100px"}}},"fontSize":"medium"} /-->
|
||||
|
||||
<!-- wp:post-template -->
|
||||
<!-- wp:group {"layout":{"type":"constrained","contentSize":"1200px","wideSize":"1400px"}} -->
|
||||
<div class="wp-block-group"><!-- wp:group {"style":{"spacing":{"blockGap":"0px"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"center"}} -->
|
||||
<div class="wp-block-group"><!-- wp:post-title {"textAlign":"center","isLink":true} /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:spacer {"height":"79px"} -->
|
||||
<div style="height:79px" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer --></div>
|
||||
<!-- /wp:group -->
|
||||
<!-- /wp:post-template -->
|
||||
|
||||
<!-- wp:group {"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group"><!-- wp:query-pagination {"layout":{"type":"flex","justifyContent":"center"}} -->
|
||||
<!-- wp:query-pagination-previous {"label":"Newer Posts"} /-->
|
||||
|
||||
<!-- wp:query-pagination-next {"label":"Older Posts"} /-->
|
||||
<!-- /wp:query-pagination --></div>
|
||||
<!-- /wp:group --></main>
|
||||
<!-- /wp:query -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->
|
27
partygurl/templates/index.html
Normal file
27
partygurl/templates/index.html
Normal file
|
@ -0,0 +1,27 @@
|
|||
<!-- wp:spacer {"height":"140px"} -->
|
||||
<div style="height:140px" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer -->
|
||||
|
||||
<!-- wp:query {"queryId":1,"query":{"perPage":"20","pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":false,"taxQuery":null,"parents":[]},"tagName":"main","layout":{"type":"default"}} -->
|
||||
<main class="wp-block-query"><!-- wp:post-template -->
|
||||
<!-- wp:group {"layout":{"type":"constrained","contentSize":"1200px","wideSize":"1400px"}} -->
|
||||
<div class="wp-block-group"><!-- wp:group {"style":{"spacing":{"blockGap":"0px"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"center"}} -->
|
||||
<div class="wp-block-group"><!-- wp:post-title {"textAlign":"center","isLink":true} /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:spacer {"height":"30px"} -->
|
||||
<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer --></div>
|
||||
<!-- /wp:group -->
|
||||
<!-- /wp:post-template -->
|
||||
|
||||
<!-- wp:group {"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group"><!-- wp:query-pagination {"layout":{"type":"flex","justifyContent":"center"}} -->
|
||||
<!-- wp:query-pagination-previous {"label":"Newer Posts"} /-->
|
||||
|
||||
<!-- wp:query-pagination-next {"label":"Older Posts"} /-->
|
||||
<!-- /wp:query-pagination --></div>
|
||||
<!-- /wp:group --></main>
|
||||
<!-- /wp:query -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->
|
21
partygurl/templates/page.html
Normal file
21
partygurl/templates/page.html
Normal file
|
@ -0,0 +1,21 @@
|
|||
<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
|
||||
|
||||
<!-- wp:group {"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group"><!-- wp:spacer {"height":"65px"} -->
|
||||
<div style="height:65px" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer -->
|
||||
|
||||
<!-- wp:group {"align":"wide","layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignwide"><!-- wp:post-title {"textAlign":"center","style":{"typography":{"fontSize":"6rem"}}} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group"><!-- wp:spacer {"height":"15px"} -->
|
||||
<div style="height:15px" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer -->
|
||||
|
||||
<!-- wp:post-content {"lock":{"move":false,"remove":false},"layout":{"type":"default"}} /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->
|
37
partygurl/templates/search.html
Normal file
37
partygurl/templates/search.html
Normal file
|
@ -0,0 +1,37 @@
|
|||
<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
|
||||
|
||||
<!-- wp:spacer {"height":"40px"} -->
|
||||
<div style="height:40px" 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","textAlign":"center","style":{"spacing":{"padding":{"bottom":"100px"}}},"fontSize":"medium"} /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:query {"queryId":1,"query":{"perPage":"20","pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true,"taxQuery":null,"parents":[]},"tagName":"main","layout":{"type":"default"}} -->
|
||||
<main class="wp-block-query"><!-- wp:post-template -->
|
||||
<!-- wp:group {"layout":{"type":"constrained","contentSize":"1200px"}} -->
|
||||
<div class="wp-block-group"><!-- wp:group {"style":{"spacing":{"blockGap":"0px"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"center"}} -->
|
||||
<div class="wp-block-group"><!-- wp:post-title {"textAlign":"center","isLink":true} /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:spacer {"height":"80px"} -->
|
||||
<div style="height:80px" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer --></div>
|
||||
<!-- /wp:group -->
|
||||
<!-- /wp:post-template -->
|
||||
|
||||
<!-- wp:query-no-results -->
|
||||
<!-- wp:pattern {"slug":"partygurl/hidden-no-results-content"} /-->
|
||||
<!-- /wp:query-no-results -->
|
||||
|
||||
<!-- wp:group {"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group"><!-- wp:query-pagination {"layout":{"type":"flex","justifyContent":"center"}} -->
|
||||
<!-- wp:query-pagination-previous {"label":"Newer Posts","style":{"typography":[]},"fontSize":"small"} /-->
|
||||
|
||||
<!-- wp:query-pagination-next {"label":"Older Posts","style":{"typography":[]},"fontSize":"small"} /-->
|
||||
<!-- /wp:query-pagination --></div>
|
||||
<!-- /wp:group --></main>
|
||||
<!-- /wp:query -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->
|
79
partygurl/templates/single.html
Normal file
79
partygurl/templates/single.html
Normal file
|
@ -0,0 +1,79 @@
|
|||
<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
|
||||
|
||||
<!-- wp:group {"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group"><!-- wp:spacer {"height":"65px"} -->
|
||||
<div style="height:65px" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer -->
|
||||
|
||||
<!-- wp:group {"align":"wide","layout":{"type":"default"}} -->
|
||||
<div class="wp-block-group alignwide"><!-- wp:post-title {"textAlign":"center","style":{"typography":{"fontSize":"6rem"}}} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group"><!-- wp:spacer {"height":"15px"} -->
|
||||
<div style="height:15px" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer -->
|
||||
|
||||
<!-- wp:template-part {"slug":"post-meta"} /-->
|
||||
|
||||
<!-- wp:spacer {"height":"15px"} -->
|
||||
<div style="height:15px" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer -->
|
||||
|
||||
<!-- wp:post-featured-image /-->
|
||||
|
||||
<!-- wp:post-content {"lock":{"move":false,"remove":false},"layout":{"type":"default"}} /-->
|
||||
|
||||
<!-- wp:group {"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group"><!-- wp:group {"style":{"spacing":{"margin":{"top":"6vh","bottom":"6vh"}}},"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"space-between"}} -->
|
||||
<div class="wp-block-group" style="margin-top:6vh;margin-bottom:6vh"><!-- wp:post-navigation-link {"textAlign":"left","label":"","showTitle":true,"linkLabel":true} /-->
|
||||
|
||||
<!-- wp:post-navigation-link {"textAlign":"right","type":"previous","label":"","showTitle":true,"linkLabel":true} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group"><!-- wp:spacer {"height":"4rem"} -->
|
||||
<div style="height:4rem" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer -->
|
||||
|
||||
<!-- wp:comments {"className":"wp-block-comments-query-loop"} -->
|
||||
<div class="wp-block-comments wp-block-comments-query-loop"><!-- wp:comments-title {"level":3} /-->
|
||||
|
||||
<!-- wp:comment-template -->
|
||||
<!-- wp:group {"style":{"spacing":{"margin":{"top":"0","bottom":"var:preset|spacing|50"}}}} -->
|
||||
<div class="wp-block-group" style="margin-top:0;margin-bottom:var(--wp--preset--spacing--50)"><!-- wp:group {"style":{"spacing":{"blockGap":"0.5em"}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
|
||||
<div class="wp-block-group"><!-- wp:group {"style":{"spacing":{"blockGap":"10px"}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
|
||||
<div class="wp-block-group"><!-- wp:comment-author-name /-->
|
||||
|
||||
<!-- wp:comment-date {"isLink":false} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:comment-content /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"blockGap":"10px"}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
|
||||
<div class="wp-block-group"><!-- wp:comment-edit-link /-->
|
||||
|
||||
<!-- wp:comment-reply-link /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
<!-- /wp:comment-template -->
|
||||
|
||||
<!-- wp:comments-pagination {"layout":{"type":"flex","justifyContent":"space-between"}} -->
|
||||
<!-- wp:comments-pagination-previous /-->
|
||||
|
||||
<!-- wp:comments-pagination-next /-->
|
||||
<!-- /wp:comments-pagination -->
|
||||
|
||||
<!-- wp:spacer {"height":"50px"} -->
|
||||
<div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer -->
|
||||
|
||||
<!-- wp:post-comments-form /--></div>
|
||||
<!-- /wp:comments --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->
|
708
partygurl/theme.json
Normal file
708
partygurl/theme.json
Normal file
|
@ -0,0 +1,708 @@
|
|||
{
|
||||
"settings": {
|
||||
"appearanceTools": true,
|
||||
"color": {
|
||||
"background": true,
|
||||
"custom": true,
|
||||
"customDuotone": true,
|
||||
"customGradient": true,
|
||||
"defaultDuotone": true,
|
||||
"defaultGradients": true,
|
||||
"defaultPalette": true,
|
||||
"duotone": [],
|
||||
"gradients": [],
|
||||
"palette": [
|
||||
{
|
||||
"color": "#99cc3f",
|
||||
"name": "Base",
|
||||
"slug": "base"
|
||||
},
|
||||
{
|
||||
"color": "#000000",
|
||||
"name": "Contrast",
|
||||
"slug": "contrast"
|
||||
},
|
||||
{
|
||||
"color": "#000000",
|
||||
"name": "Primary",
|
||||
"slug": "primary"
|
||||
},
|
||||
{
|
||||
"color": "#000000",
|
||||
"name": "Secondary",
|
||||
"slug": "secondary"
|
||||
},
|
||||
{
|
||||
"color": "#a5e239",
|
||||
"name": "Tertiary",
|
||||
"slug": "tertiary"
|
||||
}
|
||||
],
|
||||
"text": true
|
||||
},
|
||||
"layout": {
|
||||
"contentSize": "660px",
|
||||
"wideSize": "1000px"
|
||||
},
|
||||
"shadow": {
|
||||
"defaultPresets": true,
|
||||
"presets": []
|
||||
},
|
||||
"spacing": {
|
||||
"customSpacingSize": true,
|
||||
"defaultSpacingSizes": false,
|
||||
"spacingSizes": [],
|
||||
"units": [
|
||||
"%",
|
||||
"px",
|
||||
"em",
|
||||
"rem",
|
||||
"vh",
|
||||
"vw"
|
||||
]
|
||||
},
|
||||
"typography": {
|
||||
"customFontSize": true,
|
||||
"defaultFontSizes": false,
|
||||
"dropCap": true,
|
||||
"fluid": true,
|
||||
"fontFamilies": [
|
||||
{
|
||||
"fontFace": [
|
||||
{
|
||||
"fontFamily": "\"TeX Gyre Heros Cn\"",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "700",
|
||||
"src": [
|
||||
"file:./assets/fonts/texgyreheroscn-bold.otf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "\"TeX Gyre Heros Cn\"",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "700",
|
||||
"src": [
|
||||
"file:./assets/fonts/texgyreheroscn-bolditalic.otf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "\"TeX Gyre Heros Cn\"",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "400",
|
||||
"src": [
|
||||
"file:./assets/fonts/texgyreheroscn-italic.otf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "\"TeX Gyre Heros Cn\"",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "400",
|
||||
"src": [
|
||||
"file:./assets/fonts/texgyreheroscn-regular.otf"
|
||||
]
|
||||
}
|
||||
],
|
||||
"fontFamily": "\"TeX Gyre Heros Cn\"",
|
||||
"name": "TeX Gyre Heros Cn",
|
||||
"slug": "tex-gyre-heros-cn"
|
||||
}
|
||||
],
|
||||
"fontSizes": [
|
||||
{
|
||||
"fluid": {
|
||||
"max": "1.0625rem",
|
||||
"min": "0.825rem"
|
||||
},
|
||||
"name": "Small",
|
||||
"size": "1rem",
|
||||
"slug": "small"
|
||||
},
|
||||
{
|
||||
"fluid": {
|
||||
"max": "1.25rem",
|
||||
"min": "1rem"
|
||||
},
|
||||
"name": "Medium",
|
||||
"size": "1.125rem",
|
||||
"slug": "medium"
|
||||
},
|
||||
{
|
||||
"fluid": {
|
||||
"max": "2rem",
|
||||
"min": "1.75rem"
|
||||
},
|
||||
"name": "Large",
|
||||
"size": "1.75rem",
|
||||
"slug": "large"
|
||||
},
|
||||
{
|
||||
"fluid": {
|
||||
"max": "3rem",
|
||||
"min": "2.5rem"
|
||||
},
|
||||
"name": "Extra Large",
|
||||
"size": "3rem",
|
||||
"slug": "x-large"
|
||||
}
|
||||
],
|
||||
"fontStyle": true,
|
||||
"fontWeight": true,
|
||||
"letterSpacing": true,
|
||||
"textDecoration": true,
|
||||
"textTransform": true
|
||||
},
|
||||
"useRootPaddingAwareAlignments": true
|
||||
},
|
||||
"styles": {
|
||||
"blocks": {
|
||||
"core/button": {
|
||||
"border": {
|
||||
"bottom": {
|
||||
"color": "var(--wp--preset--color--contrast)",
|
||||
"style": "solid",
|
||||
"width": "2px"
|
||||
},
|
||||
"left": {
|
||||
"color": "var(--wp--preset--color--contrast)",
|
||||
"style": "solid",
|
||||
"width": "2px"
|
||||
},
|
||||
"radius": "0px",
|
||||
"right": {
|
||||
"color": "var(--wp--preset--color--contrast)",
|
||||
"style": "solid",
|
||||
"width": "2px"
|
||||
},
|
||||
"top": {
|
||||
"color": "var(--wp--preset--color--contrast)",
|
||||
"style": "solid",
|
||||
"width": "2px"
|
||||
}
|
||||
},
|
||||
"color": {
|
||||
"background": "var(--wp--preset--color--contrast)",
|
||||
"text": "var(--wp--preset--color--base)"
|
||||
},
|
||||
"shadow": "6px 6px 0px rgba(0, 0, 0, 0.2)",
|
||||
"spacing": {
|
||||
"padding": {
|
||||
"bottom": "0.7rem",
|
||||
"left": "1rem",
|
||||
"right": "1rem",
|
||||
"top": "0.7rem"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--bodoni-moda)",
|
||||
"fontSize": "var(--wp--preset--font-size--medium)",
|
||||
"letterSpacing": "-0.01rem",
|
||||
"lineHeight": "1.2",
|
||||
"textDecoration": "none",
|
||||
"textTransform": "lowercase"
|
||||
},
|
||||
"variations": {
|
||||
"outline": {
|
||||
"border": {
|
||||
"bottom": {
|
||||
"color": "var(--wp--preset--color--contrast)",
|
||||
"style": "solid",
|
||||
"width": "2px"
|
||||
},
|
||||
"left": {
|
||||
"color": "var(--wp--preset--color--contrast)",
|
||||
"style": "solid",
|
||||
"width": "2px"
|
||||
},
|
||||
"right": {
|
||||
"color": "var(--wp--preset--color--contrast)",
|
||||
"style": "solid",
|
||||
"width": "2px"
|
||||
},
|
||||
"top": {
|
||||
"color": "var(--wp--preset--color--contrast)",
|
||||
"style": "solid",
|
||||
"width": "2px"
|
||||
}
|
||||
},
|
||||
"color": {
|
||||
"background": "var(--wp--preset--color--base)"
|
||||
},
|
||||
"spacing": {
|
||||
"padding": {
|
||||
"bottom": "0.7rem",
|
||||
"left": "1rem",
|
||||
"right": "1rem",
|
||||
"top": "0.7rem"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/code": {
|
||||
"border": {
|
||||
"bottom": {
|
||||
"style": "none",
|
||||
"width": "0px"
|
||||
},
|
||||
"color": null,
|
||||
"left": {
|
||||
"style": "none",
|
||||
"width": "0px"
|
||||
},
|
||||
"radius": "0rem",
|
||||
"right": {
|
||||
"style": "none",
|
||||
"width": "0px"
|
||||
},
|
||||
"style": null,
|
||||
"top": {
|
||||
"style": "none",
|
||||
"width": "0px"
|
||||
},
|
||||
"width": null
|
||||
},
|
||||
"color": {
|
||||
"background": "var(--wp--preset--color--tertiary)"
|
||||
},
|
||||
"spacing": {
|
||||
"padding": {
|
||||
"bottom": "var(--wp--preset--spacing--50)",
|
||||
"left": "var(--wp--preset--spacing--50)",
|
||||
"right": "var(--wp--preset--spacing--50)",
|
||||
"top": "var(--wp--preset--spacing--50)"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontFamily": "monospace"
|
||||
}
|
||||
},
|
||||
"core/comment-author-name": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "400",
|
||||
"letterSpacing": "-0.03rem"
|
||||
}
|
||||
},
|
||||
"core/comment-content": {
|
||||
"typography": {
|
||||
"letterSpacing": "-0.03rem"
|
||||
}
|
||||
},
|
||||
"core/comment-date": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"letterSpacing": "-0.03rem"
|
||||
}
|
||||
},
|
||||
"core/comment-edit-link": {
|
||||
"typography": {
|
||||
"fontSize": "0.9rem"
|
||||
}
|
||||
},
|
||||
"core/comment-reply-link": {
|
||||
"typography": {
|
||||
"fontSize": "0.9rem"
|
||||
}
|
||||
},
|
||||
"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"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--bodoni-moda)",
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"textTransform": "lowercase"
|
||||
}
|
||||
},
|
||||
"core/paragraph": {
|
||||
"typography": {
|
||||
"letterSpacing": "-0.01em"
|
||||
}
|
||||
},
|
||||
"core/post-author-name": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "8rem",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "400",
|
||||
"letterSpacing": "-0.04rem",
|
||||
"textTransform": "uppercase"
|
||||
}
|
||||
},
|
||||
"core/post-content": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--ibarra-real-nova)",
|
||||
"fontSize": "1.4rem",
|
||||
"letterSpacing": "-0.03rem",
|
||||
"lineHeight": "1.3"
|
||||
}
|
||||
},
|
||||
"core/post-date": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--contrast)"
|
||||
},
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--bodoni-moda)",
|
||||
"fontSize": "1rem",
|
||||
"textTransform": "uppercase"
|
||||
}
|
||||
},
|
||||
"core/post-navigation-link": {
|
||||
"css": "text-wrap: pretty;\ntext-wrap: balance",
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--bodoni-moda)",
|
||||
"fontSize": "var(--wp--preset--font-size--large)",
|
||||
"letterSpacing": "-0.03rem",
|
||||
"lineHeight": "1",
|
||||
"textTransform": "lowercase"
|
||||
}
|
||||
},
|
||||
"core/post-terms": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--bodoni-moda)",
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"textTransform": "uppercase"
|
||||
}
|
||||
},
|
||||
"core/post-title": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
"spacing": {
|
||||
"margin": {
|
||||
"bottom": "0"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "7rem",
|
||||
"letterSpacing": "-0.1rem",
|
||||
"lineHeight": "0.9"
|
||||
}
|
||||
},
|
||||
"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": {
|
||||
"fontFamily": "var(--wp--preset--font-family--tex-gyre-heros-cn)",
|
||||
"fontSize": "var(--wp--preset--font-size--x-large)",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "400",
|
||||
"letterSpacing": "-0.01em",
|
||||
"lineHeight": "1.2",
|
||||
"textTransform": "lowercase"
|
||||
}
|
||||
},
|
||||
"core/query-pagination": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--bodoni-moda)",
|
||||
"letterSpacing": "-0.03rem"
|
||||
}
|
||||
},
|
||||
"core/query-pagination-next": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--medium)",
|
||||
"textTransform": "lowercase"
|
||||
}
|
||||
},
|
||||
"core/query-pagination-previous": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--medium)",
|
||||
"textTransform": "lowercase"
|
||||
}
|
||||
},
|
||||
"core/quote": {
|
||||
"border": {
|
||||
"color": "var(--wp--preset--color--primary)",
|
||||
"style": "solid",
|
||||
"width": "0 0 0 1px"
|
||||
},
|
||||
"spacing": {
|
||||
"padding": {
|
||||
"left": "var(--wp--preset--spacing--50)"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontStyle": "normal"
|
||||
}
|
||||
},
|
||||
"core/search": {
|
||||
"border": {
|
||||
"bottom": {
|
||||
"style": "none",
|
||||
"width": "0px"
|
||||
},
|
||||
"color": null,
|
||||
"left": {
|
||||
"style": "none",
|
||||
"width": "0px"
|
||||
},
|
||||
"radius": "0px",
|
||||
"right": {
|
||||
"style": "none",
|
||||
"width": "0px"
|
||||
},
|
||||
"style": null,
|
||||
"top": {
|
||||
"style": "none",
|
||||
"width": "0px"
|
||||
},
|
||||
"width": null
|
||||
},
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--secondary)"
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--medium)",
|
||||
"lineHeight": "1.6"
|
||||
}
|
||||
},
|
||||
"core/separator": {
|
||||
"border": {
|
||||
"color": "currentColor",
|
||||
"style": "solid",
|
||||
"width": "0 0 1px 0"
|
||||
},
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--contrast)"
|
||||
}
|
||||
},
|
||||
"core/site-tagline": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)"
|
||||
}
|
||||
},
|
||||
"core/site-title": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--large)",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "400",
|
||||
"letterSpacing": "0rem",
|
||||
"textTransform": "lowercase"
|
||||
}
|
||||
}
|
||||
},
|
||||
"color": {
|
||||
"background": "#99cc3f",
|
||||
"text": "var(--wp--preset--color--contrast)"
|
||||
},
|
||||
"css": "",
|
||||
"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--primary)",
|
||||
"text": "var(--wp--preset--color--base)"
|
||||
},
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--tex-gyre-heros-cn)"
|
||||
}
|
||||
},
|
||||
"caption": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"textTransform": "lowercase"
|
||||
}
|
||||
},
|
||||
"h1": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--x-large)"
|
||||
}
|
||||
},
|
||||
"h2": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--large)"
|
||||
}
|
||||
},
|
||||
"h3": {
|
||||
"typography": {
|
||||
"fontSize": "clamp(1.5rem, calc(1.5rem + ((1vw - 0.48rem) * 0.4808)), 1.75rem)"
|
||||
}
|
||||
},
|
||||
"h4": {
|
||||
"typography": {
|
||||
"fontSize": "clamp(1.25rem, calc(1.25rem + ((1vw - 0.48rem) * 0.4808)), 1.5rem)"
|
||||
}
|
||||
},
|
||||
"h5": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--medium)",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "700"
|
||||
}
|
||||
},
|
||||
"h6": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "600",
|
||||
"letterSpacing": "0em",
|
||||
"textTransform": "uppercase"
|
||||
}
|
||||
},
|
||||
"heading": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--tex-gyre-heros-cn)",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "400",
|
||||
"letterSpacing": "-0.02rem",
|
||||
"lineHeight": "1.1",
|
||||
"textTransform": "lowercase"
|
||||
}
|
||||
},
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
},
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--primary)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"spacing": {
|
||||
"blockGap": "1.5rem",
|
||||
"padding": {
|
||||
"bottom": "var(--wp--preset--spacing--50)",
|
||||
"left": "var(--wp--preset--spacing--50)",
|
||||
"right": "var(--wp--preset--spacing--50)",
|
||||
"top": "0px"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--tex-gyre-heros-cn)",
|
||||
"fontSize": "var(--wp--preset--font-size--medium)",
|
||||
"letterSpacing": "-0.01em",
|
||||
"lineHeight": "1.2"
|
||||
}
|
||||
},
|
||||
"templateParts": [
|
||||
{
|
||||
"area": "header",
|
||||
"name": "header"
|
||||
},
|
||||
{
|
||||
"area": "footer",
|
||||
"name": "footer"
|
||||
}
|
||||
],
|
||||
"version": 3,
|
||||
"$schema": "https://schemas.wp.org/trunk/theme.json"
|
||||
}
|
|
@ -8,8 +8,8 @@ import progressbar from 'string-progressbar';
|
|||
import semver from 'semver';
|
||||
|
||||
const remoteSSH = 'wpcom-sandbox';
|
||||
const sandboxPublicThemesFolder = '/home/wpdev/public_html/wp-content/themes/pub';
|
||||
const sandboxRootFolder = '/home/wpdev/public_html/';
|
||||
const sandboxPublicThemesFolder = '/home/wpcom/public_html/wp-content/themes/pub';
|
||||
const sandboxRootFolder = '/home/wpcom/public_html/';
|
||||
const glotPressScript = '~/public_html/bin/i18n/create-glotpress-project-for-theme.php';
|
||||
const isWin = process.platform === 'win32';
|
||||
const coreThemes = ['twentyten', 'twentyeleven', 'twentytwelve', 'twentythirteen', 'twentyfourteen', 'twentyfifteen', 'twentysixteen', 'twentyseventeen', 'twentynineteen', 'twentytwenty', 'twentytwentyone', 'twentytwentytwo', 'twentytwentythree', 'twentytwentyfour'];
|
||||
|
|
|
@ -63,4 +63,4 @@ body {
|
|||
a {
|
||||
text-decoration-thickness: .0625em !important;
|
||||
text-underline-offset: .15em;
|
||||
}/* a */
|
||||
}
|
|
@ -355,6 +355,8 @@ class Varia_SVG_Icons {
|
|||
),
|
||||
'twitter' => array(
|
||||
'twitter.com',
|
||||
),
|
||||
'x' => array(
|
||||
'x.com',
|
||||
),
|
||||
'vimeo' => array(
|
||||
|
@ -635,12 +637,14 @@ class Varia_SVG_Icons {
|
|||
<svg viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<path d="M16.499,8.089h-1.636v4.91h1.636V8.089z M12,8.089h-1.637v4.91H12V8.089z M4.228,3.178L3,6.451v13.092h4.499V22h2.456 l2.454-2.456h3.681L21,14.636V3.178H4.228z M19.364,13.816l-2.864,2.865H12l-2.453,2.453V16.68H5.863V4.814h13.501V13.816z"></path>
|
||||
</svg>',
|
||||
|
||||
'twitter' => '
|
||||
<svg viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<path d="M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z"></path>
|
||||
</svg>',
|
||||
|
||||
'x' => '
|
||||
<svg viewBox="0 0 29 29" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g fill="currentColor"><path d="M1 2h2.5L3.5 2h-2.5z"><animate fill="freeze" attributeName="d" dur="0.4s" values="M1 2h2.5L3.5 2h-2.5z;M1 2h2.5L18.5 22h-2.5z"/></path><path d="M5.5 2h2.5L7.2 2h-2.5z"><animate fill="freeze" attributeName="d" dur="0.4s" values="M5.5 2h2.5L7.2 2h-2.5z;M5.5 2h2.5L23 22h-2.5z"/></path><path d="M3 2h5v0h-5z" opacity="0"><set attributeName="opacity" begin="0.4s" to="1"/><animate fill="freeze" attributeName="d" begin="0.4s" dur="0.4s" values="M3 2h5v0h-5z;M3 2h5v2h-5z"/></path><path d="M16 22h5v0h-5z" opacity="0"><set attributeName="opacity" begin="0.4s" to="1"/><animate fill="freeze" attributeName="d" begin="0.4s" dur="0.4s" values="M16 22h5v0h-5z;M16 22h5v-2h-5z"/></path><path d="M18.5 2h3.5L22 2h-3.5z" opacity="0"><set attributeName="opacity" begin="0.5s" to="1"/><animate fill="freeze" attributeName="d" begin="0.5s" dur="0.4s" values="M18.5 2h3.5L22 2h-3.5z;M18.5 2h3.5L5 22h-3.5z"/></path></g>
|
||||
</svg>',
|
||||
'vimeo' => '
|
||||
<svg viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<path d="M22.396,7.164c-0.093,2.026-1.507,4.799-4.245,8.32C15.322,19.161,12.928,21,10.97,21c-1.214,0-2.24-1.119-3.079-3.359 c-0.56-2.053-1.119-4.106-1.68-6.159C5.588,9.243,4.921,8.122,4.206,8.122c-0.156,0-0.701,0.328-1.634,0.98L1.594,7.841 c1.027-0.902,2.04-1.805,3.037-2.708C6.001,3.95,7.03,3.327,7.715,3.264c1.619-0.156,2.616,0.951,2.99,3.321 c0.404,2.557,0.685,4.147,0.841,4.769c0.467,2.121,0.981,3.181,1.542,3.181c0.435,0,1.09-0.688,1.963-2.065 c0.871-1.376,1.338-2.422,1.401-3.142c0.125-1.187-0.343-1.782-1.401-1.782c-0.498,0-1.012,0.115-1.541,0.341 c1.023-3.35,2.977-4.977,5.862-4.884C21.511,3.066,22.52,4.453,22.396,7.164z"></path>
|
||||
|
|
|
@ -6,7 +6,7 @@ Author: Automattic
|
|||
Author URI: https://automattic.com/
|
||||
Description: A variable-based design system for WordPress sites built with Gutenberg.
|
||||
Requires at least: WordPress 4.9.6
|
||||
Version: 1.6.32
|
||||
Version: 1.6.33
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: LICENSE
|
||||
Text Domain: varia
|
||||
|
|
|
@ -6,7 +6,7 @@ Author: Automattic
|
|||
Author URI: https://automattic.com/
|
||||
Description: A variable-based design system for WordPress sites built with Gutenberg.
|
||||
Requires at least: WordPress 4.9.6
|
||||
Version: 1.6.32
|
||||
Version: 1.6.33
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: LICENSE
|
||||
Text Domain: varia
|
||||
|
|
BIN
wp-dos/assets/fonts/jetbrains-mono_italic_300.woff2
Normal file
BIN
wp-dos/assets/fonts/jetbrains-mono_italic_300.woff2
Normal file
Binary file not shown.
BIN
wp-dos/assets/fonts/jetbrains-mono_normal_300.woff2
Normal file
BIN
wp-dos/assets/fonts/jetbrains-mono_normal_300.woff2
Normal file
Binary file not shown.
BIN
wp-dos/assets/fonts/overused-grotesk_italic_400.woff2
Normal file
BIN
wp-dos/assets/fonts/overused-grotesk_italic_400.woff2
Normal file
Binary file not shown.
BIN
wp-dos/assets/fonts/overused-grotesk_italic_600.woff2
Normal file
BIN
wp-dos/assets/fonts/overused-grotesk_italic_600.woff2
Normal file
Binary file not shown.
BIN
wp-dos/assets/fonts/overused-grotesk_normal_400.woff2
Normal file
BIN
wp-dos/assets/fonts/overused-grotesk_normal_400.woff2
Normal file
Binary file not shown.
BIN
wp-dos/assets/fonts/overused-grotesk_normal_600.woff2
Normal file
BIN
wp-dos/assets/fonts/overused-grotesk_normal_600.woff2
Normal file
Binary file not shown.
BIN
wp-dos/assets/images/dos_noise-texture.png
Normal file
BIN
wp-dos/assets/images/dos_noise-texture.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 87 KiB |
61
wp-dos/functions.php
Normal file
61
wp-dos/functions.php
Normal file
|
@ -0,0 +1,61 @@
|
|||
<?php declare( strict_types = 1 ); ?>
|
||||
<?php
|
||||
/**
|
||||
* WP-DOS functions and definitions
|
||||
*
|
||||
* @link https://developer.wordpress.org/themes/basics/theme-functions/
|
||||
*
|
||||
* @package WP-DOS
|
||||
* @since WP-DOS 1.0
|
||||
*/
|
||||
|
||||
|
||||
if ( ! function_exists( 'wp_dos_support' ) ) :
|
||||
|
||||
/**
|
||||
* Sets up theme defaults and registers support for various WordPress features.
|
||||
*
|
||||
* @since WP-DOS 1.0
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function wp_dos_support() {
|
||||
|
||||
// Enqueue editor styles.
|
||||
add_editor_style( 'style.css' );
|
||||
|
||||
// Make theme available for translation.
|
||||
load_theme_textdomain( 'wp-dos' );
|
||||
}
|
||||
|
||||
endif;
|
||||
|
||||
add_action( 'after_setup_theme', 'wp_dos_support' );
|
||||
|
||||
if ( ! function_exists( 'wp_dos_styles' ) ) :
|
||||
|
||||
/**
|
||||
* Enqueue styles.
|
||||
*
|
||||
* @since WP-DOS 1.0
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function wp_dos_styles() {
|
||||
|
||||
// Register theme stylesheet.
|
||||
wp_register_style(
|
||||
'wp-dos-style',
|
||||
get_stylesheet_directory_uri() . '/style.css',
|
||||
array(),
|
||||
wp_get_theme()->get( 'Version' )
|
||||
);
|
||||
|
||||
// Enqueue theme stylesheet.
|
||||
wp_enqueue_style( 'wp-dos-style' );
|
||||
|
||||
}
|
||||
|
||||
endif;
|
||||
|
||||
add_action( 'wp_enqueue_scripts', 'wp_dos_styles' );
|
37
wp-dos/parts/footer.html
Normal file
37
wp-dos/parts/footer.html
Normal file
|
@ -0,0 +1,37 @@
|
|||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"0","bottom":"0"}},"position":{"type":""}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-top:0;padding-bottom:0"><!-- wp:columns {"verticalAlignment":"top","align":"full","style":{"spacing":{"blockGap":{"top":"0"}},"border":{"top":{"width":"1px","style":"dotted"}}}} -->
|
||||
<div class="wp-block-columns alignfull are-vertically-aligned-top" style="border-top-style:dotted;border-top-width:1px"><!-- wp:column {"verticalAlignment":"top","width":"55%","style":{"spacing":{"padding":{"top":"var:preset|spacing|40"}}}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="padding-top:var(--wp--preset--spacing--40);flex-basis:55%"><!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|40"}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
|
||||
<div class="wp-block-group"><!-- wp:paragraph {"align":"left","style":{"typography":{"textTransform":"uppercase"}}} -->
|
||||
<p class="has-text-align-left" style="text-transform:uppercase"><a href="#">Linkedin</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"align":"left","style":{"typography":{"textTransform":"uppercase"}}} -->
|
||||
<p class="has-text-align-left" style="text-transform:uppercase"><a href="#">Tumblr</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"align":"left","style":{"typography":{"textTransform":"uppercase"}}} -->
|
||||
<p class="has-text-align-left" style="text-transform:uppercase"><a href="#">GitHub</a></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"align":"left","style":{"typography":{"textTransform":"uppercase"}}} -->
|
||||
<p class="has-text-align-left" style="text-transform:uppercase"><a href="#">Mastodon</a></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"top","width":"5%"} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="flex-basis:5%"></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"top","width":"20%"} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="flex-basis:20%"></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"top","width":"20%","style":{"spacing":{"padding":{"top":"var:preset|spacing|40"}}}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="padding-top:var(--wp--preset--spacing--40);flex-basis:20%"><!-- wp:paragraph {"align":"left"} -->
|
||||
<p class="has-text-align-left">Designed with <a href="https://wordpress.org" rel="nofollow">WordPress</a>.</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></div>
|
||||
<!-- /wp:group -->
|
43
wp-dos/parts/header.html
Normal file
43
wp-dos/parts/header.html
Normal file
|
@ -0,0 +1,43 @@
|
|||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"0","bottom":"0"}},"position":{"type":""}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-top:0;padding-bottom:0"><!-- wp:columns {"verticalAlignment":"top","align":"full","style":{"spacing":{"blockGap":{"top":"0"}}}} -->
|
||||
<div class="wp-block-columns alignfull are-vertically-aligned-top"><!-- wp:column {"verticalAlignment":"top","width":"25%"} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="flex-basis:25%"><!-- wp:group {"style":{"spacing":{"blockGap":"0"}},"layout":{"type":"flex","orientation":"vertical"}} -->
|
||||
<div class="wp-block-group"><!-- wp:site-title /-->
|
||||
|
||||
<!-- wp:site-tagline /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"top","width":"25%"} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="flex-basis:25%"></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"top","width":"30%"} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="flex-basis:30%"></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"top","width":"20%","style":{"spacing":{"padding":{"bottom":"var:preset|spacing|30"}}}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="padding-bottom:var(--wp--preset--spacing--30);flex-basis:20%"><!-- wp:paragraph {"style":{"typography":{"textTransform":"uppercase"}}} -->
|
||||
<p style="text-transform:uppercase"><a href="#">Contact</a></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns -->
|
||||
|
||||
<!-- wp:columns {"verticalAlignment":"center","align":"full","style":{"spacing":{"blockGap":{"top":"0"}},"border":{"top":{"width":"1px","style":"dotted"}}}} -->
|
||||
<div class="wp-block-columns alignfull are-vertically-aligned-center" style="border-top-style:dotted;border-top-width:1px"><!-- wp:column {"verticalAlignment":"center","width":"25%","style":{"spacing":{"padding":{"top":"var:preset|spacing|20","bottom":"var:preset|spacing|50"}}}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-center" style="padding-top:var(--wp--preset--spacing--20);padding-bottom:var(--wp--preset--spacing--50);flex-basis:25%"><!-- wp:navigation {"overlayMenu":"never","layout":{"type":"flex","setCascadingProperties":true,"justifyContent":"left","orientation":"horizontal"}} /--></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"center","width":"25%"} -->
|
||||
<div class="wp-block-column is-vertically-aligned-center" style="flex-basis:25%"></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"center","width":"25%"} -->
|
||||
<div class="wp-block-column is-vertically-aligned-center" style="flex-basis:25%"></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"center","width":"25%"} -->
|
||||
<div class="wp-block-column is-vertically-aligned-center" style="flex-basis:25%"></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></div>
|
||||
<!-- /wp:group -->
|
9
wp-dos/parts/post-meta.html
Normal file
9
wp-dos/parts/post-meta.html
Normal file
|
@ -0,0 +1,9 @@
|
|||
<!-- wp:group {"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group"><!-- wp:group {"layout":{"type":"flex"}} -->
|
||||
<div class="wp-block-group"><!-- wp:post-date {"isLink":true,"fontSize":"small"} /-->
|
||||
|
||||
<!-- wp:post-terms {"term":"category","fontSize":"small"} /-->
|
||||
|
||||
<!-- wp:post-terms {"term":"post_tag","fontSize":"small"} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
52
wp-dos/patterns/404.php
Normal file
52
wp-dos/patterns/404.php
Normal file
|
@ -0,0 +1,52 @@
|
|||
<?php declare( strict_types = 1 ); ?>
|
||||
<?php
|
||||
/**
|
||||
* Title: 404
|
||||
* Slug: wp-dos/404
|
||||
* Categories: hidden
|
||||
* Inserter: no
|
||||
*/
|
||||
?>
|
||||
<!-- wp:cover {"dimRatio":10,"overlayColor":"contrast","isUserOverlayColor":true,"minHeight":100,"minHeightUnit":"vh","contentPosition":"top center","isDark":false,"style":{"spacing":{"margin":{"top":"0vh","bottom":"0vh"},"padding":{"right":"5%","left":"5%","top":"var:preset|spacing|70","bottom":"var:preset|spacing|70"}}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-cover is-light has-custom-content-position is-position-top-center" style="margin-top:0vh;margin-bottom:0vh;padding-top:var(--wp--preset--spacing--70);padding-right:5%;padding-bottom:var(--wp--preset--spacing--70);padding-left:5%;min-height:100vh"><span aria-hidden="true" class="wp-block-cover__background has-contrast-background-color has-background-dim-10 has-background-dim"></span><div class="wp-block-cover__inner-container"><!-- wp:template-part {"slug":"header","tagName":"header","align":"wide"} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"bottom":"var:preset|spacing|70"}}},"layout":{"type":"constrained","justifyContent":"left"}} -->
|
||||
<div class="wp-block-group" style="padding-bottom:var(--wp--preset--spacing--70)"><!-- wp:columns {"verticalAlignment":"bottom","align":"full","style":{"spacing":{"blockGap":{"top":"0"}},"border":{"top":{"width":"1px","style":"dotted"},"right":[],"bottom":[],"left":[]}}} -->
|
||||
<div class="wp-block-columns alignfull are-vertically-aligned-bottom" style="border-top-style:dotted;border-top-width:1px"><!-- wp:column {"verticalAlignment":"bottom","width":"25%","style":{"spacing":{"padding":{"top":"var:preset|spacing|70","bottom":"0"}}}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-bottom" style="padding-top:var(--wp--preset--spacing--70);padding-bottom:0;flex-basis:25%"><!-- wp:heading -->
|
||||
<h2 class="wp-block-heading"><?php echo __('<br>█▄─▄▄─█─▄▄─█▄─██─▄█▄─▄▄▀█<br>██─▄███─██─██─██─███─▄─▄█<br>▀▄▄▄▀▀▀▄▄▄▄▀▀▄▄▄▄▀▀▄▄▀▄▄▀<br>█─▄▄─█─█─█<br>█─██─█─▄─█<br>▀▄▄▄▄▀▄▀▄▀<br>█▄─▄▄─█─▄▄─█▄─██─▄█▄─▄▄▀█<br>██─▄███─██─██─██─███─▄─▄█<br>▀▄▄▄▀▀▀▄▄▄▄▀▀▄▄▄▄▀▀▄▄▀▄▄▀', 'wp-dos');?></h2>
|
||||
<!-- /wp:heading --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"bottom","width":"5%"} -->
|
||||
<div class="wp-block-column is-vertically-aligned-bottom" style="flex-basis:5%"></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"bottom","width":"65%","style":{"spacing":{"padding":{"top":"var:preset|spacing|70","bottom":"0"}}}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-bottom" style="padding-top:var(--wp--preset--spacing--70);padding-bottom:0;flex-basis:65%"><!-- wp:group {"align":"wide","style":{"spacing":{"blockGap":"0","padding":{"top":"var:preset|spacing|40","bottom":"0"}}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
|
||||
<div class="wp-block-group alignwide" style="padding-top:var(--wp--preset--spacing--40);padding-bottom:0"><!-- wp:heading {"textAlign":"left","level":1,"style":{"spacing":{"padding":{"top":"0","bottom":"0"}}}} -->
|
||||
<h1 class="wp-block-heading has-text-align-left" id="oops-that-page-can-t-be-found" style="padding-top:0;padding-bottom:0"><?php echo __('Oops! That page can’t be found.', 'wp-dos');?></h1>
|
||||
<!-- /wp:heading --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"blockGap":"0","margin":{"bottom":"var:preset|spacing|50"}}},"layout":{"type":"flex","orientation":"vertical"}} -->
|
||||
<div class="wp-block-group" style="margin-bottom:var(--wp--preset--spacing--50)"><!-- wp:paragraph -->
|
||||
<p><?php echo __('It looks like nothing was found at this location.', 'wp-dos');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph -->
|
||||
<p><?php echo __('Maybe try a search?', 'wp-dos');?></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:search {"label":"Search","showLabel":false,"width":50,"widthUnit":"%","buttonText":"Search","buttonPosition":"button-inside","buttonUseIcon":true,"style":{"border":{"width":"0px","style":"none"}}} /--></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"bottom","width":"5%","style":{"spacing":{"padding":{"top":"var:preset|spacing|70","bottom":"0"}}}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-bottom" style="padding-top:var(--wp--preset--spacing--70);padding-bottom:0;flex-basis:5%"></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /--></div></div>
|
||||
<!-- /wp:cover -->
|
166
wp-dos/patterns/archive.php
Normal file
166
wp-dos/patterns/archive.php
Normal file
|
@ -0,0 +1,166 @@
|
|||
<?php declare( strict_types = 1 ); ?>
|
||||
<?php
|
||||
/**
|
||||
* Title: archive
|
||||
* Slug: wp-dos/archive
|
||||
* Categories: hidden
|
||||
* Inserter: no
|
||||
*/
|
||||
?>
|
||||
<!-- wp:cover {"dimRatio":10,"overlayColor":"contrast","isUserOverlayColor":true,"minHeight":100,"minHeightUnit":"vh","contentPosition":"top center","isDark":false,"style":{"spacing":{"margin":{"top":"0vh","bottom":"0vh"},"padding":{"right":"5%","left":"5%","top":"var:preset|spacing|70","bottom":"var:preset|spacing|70"}}},"layout":{"type":"default"}} -->
|
||||
<div class="wp-block-cover is-light has-custom-content-position is-position-top-center" style="margin-top:0vh;margin-bottom:0vh;padding-top:var(--wp--preset--spacing--70);padding-right:5%;padding-bottom:var(--wp--preset--spacing--70);padding-left:5%;min-height:100vh"><span aria-hidden="true" class="wp-block-cover__background has-contrast-background-color has-background-dim-10 has-background-dim"></span><div class="wp-block-cover__inner-container"><!-- wp:template-part {"slug":"header","tagName":"header","align":"wide"} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"bottom":"var:preset|spacing|70","top":"var:preset|spacing|40"}},"border":{"top":{"width":"1px","style":"dotted"}}},"layout":{"type":"constrained","justifyContent":"left"}} -->
|
||||
<div class="wp-block-group" style="border-top-style:dotted;border-top-width:1px;padding-top:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--70)"><!-- wp:query {"queryId":0,"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true,"taxQuery":null,"parents":[]},"tagName":"main","align":"full","layout":{"type":"constrained"}} -->
|
||||
<main class="wp-block-query alignfull"><!-- wp:query-title {"type":"archive","align":"full"} /-->
|
||||
|
||||
<!-- wp:post-template {"align":"full","style":{"spacing":{"blockGap":"10vh"}}} -->
|
||||
<!-- wp:columns {"style":{"spacing":{"blockGap":{"top":"0"}},"border":{"top":{"width":"1px","style":"dotted"},"right":[],"bottom":[],"left":[]}}} -->
|
||||
<div class="wp-block-columns" style="border-top-style:dotted;border-top-width:1px"><!-- wp:column {"width":"20%","style":{"spacing":{"padding":{"top":"var:preset|spacing|70","bottom":"0"}}}} -->
|
||||
<div class="wp-block-column" style="padding-top:var(--wp--preset--spacing--70);padding-bottom:0;flex-basis:20%"><!-- wp:group {"align":"wide","style":{"spacing":{"blockGap":"0"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"left"}} -->
|
||||
<div class="wp-block-group alignwide"><!-- wp:post-title {"level":1,"isLink":true,"align":"wide"} /-->
|
||||
|
||||
<!-- wp:post-date {"isLink":true} /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"align":"wide","style":{"spacing":{"blockGap":"0","padding":{"top":"var:preset|spacing|40","bottom":"0"}}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
|
||||
<div class="wp-block-group alignwide" style="padding-top:var(--wp--preset--spacing--40);padding-bottom:0"><!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|20"}}},"layout":{"type":"flex","flexWrap":"wrap","justifyContent":"space-between"}} -->
|
||||
<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--20)"><!-- wp:paragraph {"style":{"elements":{"link":{"color":{"text":"var:preset|color|secondary"}}}},"textColor":"secondary"} -->
|
||||
<p class="has-secondary-color has-text-color has-link-color"><?php echo __('+', 'wp-dos');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"elements":{"link":{"color":{"text":"var:preset|color|secondary"}}}},"textColor":"secondary"} -->
|
||||
<p class="has-secondary-color has-text-color has-link-color"><?php echo __('+', 'wp-dos');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"elements":{"link":{"color":{"text":"var:preset|color|secondary"}}}},"textColor":"secondary"} -->
|
||||
<p class="has-secondary-color has-text-color has-link-color"><?php echo __('+', 'wp-dos');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"elements":{"link":{"color":{"text":"var:preset|color|secondary"}}}},"textColor":"secondary"} -->
|
||||
<p class="has-secondary-color has-text-color has-link-color"><?php echo __('+', 'wp-dos');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"elements":{"link":{"color":{"text":"var:preset|color|secondary"}}}},"textColor":"secondary"} -->
|
||||
<p class="has-secondary-color has-text-color has-link-color"><?php echo __('+', 'wp-dos');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"elements":{"link":{"color":{"text":"var:preset|color|secondary"}}}},"textColor":"secondary"} -->
|
||||
<p class="has-secondary-color has-text-color has-link-color"><?php echo __('+', 'wp-dos');?></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"5%"} -->
|
||||
<div class="wp-block-column" style="flex-basis:5%"></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"55%","style":{"spacing":{"padding":{"top":"var:preset|spacing|70","bottom":"0"}}}} -->
|
||||
<div class="wp-block-column" style="padding-top:var(--wp--preset--spacing--70);padding-bottom:0;flex-basis:55%"><!-- wp:group {"layout":{"type":"constrained","justifyContent":"left"}} -->
|
||||
<div class="wp-block-group"><!-- wp:post-excerpt {"showMoreOnNewLine":false,"excerptLength":50} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"width":"20%","style":{"spacing":{"padding":{"top":"var:preset|spacing|70","bottom":"0"}}}} -->
|
||||
<div class="wp-block-column" style="padding-top:var(--wp--preset--spacing--70);padding-bottom:0;flex-basis:20%"><!-- wp:group {"align":"wide","style":{"spacing":{"blockGap":"0"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
|
||||
<div class="wp-block-group alignwide"><!-- wp:group {"layout":{"type":"flex","flexWrap":"wrap","justifyContent":"space-between"}} -->
|
||||
<div class="wp-block-group"><!-- wp:paragraph {"style":{"elements":{"link":{"color":{"text":"var:preset|color|secondary"}}}},"textColor":"secondary"} -->
|
||||
<p class="has-secondary-color has-text-color has-link-color"><?php echo __('+', 'wp-dos');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"elements":{"link":{"color":{"text":"var:preset|color|secondary"}}}},"textColor":"secondary"} -->
|
||||
<p class="has-secondary-color has-text-color has-link-color"><?php echo __('+', 'wp-dos');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"elements":{"link":{"color":{"text":"var:preset|color|secondary"}}}},"textColor":"secondary"} -->
|
||||
<p class="has-secondary-color has-text-color has-link-color"><?php echo __('+', 'wp-dos');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"elements":{"link":{"color":{"text":"var:preset|color|secondary"}}}},"textColor":"secondary"} -->
|
||||
<p class="has-secondary-color has-text-color has-link-color"><?php echo __('+', 'wp-dos');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"elements":{"link":{"color":{"text":"var:preset|color|secondary"}}}},"textColor":"secondary"} -->
|
||||
<p class="has-secondary-color has-text-color has-link-color"><?php echo __('+', 'wp-dos');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"elements":{"link":{"color":{"text":"var:preset|color|secondary"}}}},"textColor":"secondary"} -->
|
||||
<p class="has-secondary-color has-text-color has-link-color"><?php echo __('+', 'wp-dos');?></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:post-terms {"term":"category","prefix":"<?php echo __('+', 'wp-dos');?> "} /-->
|
||||
|
||||
<!-- wp:post-terms {"term":"post_tag","prefix":"<?php echo __('+', 'wp-dos');?> "} /-->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|20"}}},"layout":{"type":"flex","flexWrap":"wrap","justifyContent":"space-between"}} -->
|
||||
<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--20)"><!-- wp:paragraph {"style":{"elements":{"link":{"color":{"text":"var:preset|color|secondary"}}}},"textColor":"secondary"} -->
|
||||
<p class="has-secondary-color has-text-color has-link-color"><?php echo __('+', 'wp-dos');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"elements":{"link":{"color":{"text":"var:preset|color|secondary"}}}},"textColor":"secondary"} -->
|
||||
<p class="has-secondary-color has-text-color has-link-color"><?php echo __('+', 'wp-dos');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"elements":{"link":{"color":{"text":"var:preset|color|secondary"}}}},"textColor":"secondary"} -->
|
||||
<p class="has-secondary-color has-text-color has-link-color"><?php echo __('+', 'wp-dos');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"elements":{"link":{"color":{"text":"var:preset|color|secondary"}}}},"textColor":"secondary"} -->
|
||||
<p class="has-secondary-color has-text-color has-link-color"><?php echo __('+', 'wp-dos');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"elements":{"link":{"color":{"text":"var:preset|color|secondary"}}}},"textColor":"secondary"} -->
|
||||
<p class="has-secondary-color has-text-color has-link-color"><?php echo __('+', 'wp-dos');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"elements":{"link":{"color":{"text":"var:preset|color|secondary"}}}},"textColor":"secondary"} -->
|
||||
<p class="has-secondary-color has-text-color has-link-color"><?php echo __('+', 'wp-dos');?></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|20"}}},"layout":{"type":"flex","flexWrap":"wrap","justifyContent":"space-between"}} -->
|
||||
<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--20)"><!-- wp:paragraph {"style":{"elements":{"link":{"color":{"text":"var:preset|color|secondary"}}}},"textColor":"secondary"} -->
|
||||
<p class="has-secondary-color has-text-color has-link-color"><?php echo __('+', 'wp-dos');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"elements":{"link":{"color":{"text":"var:preset|color|secondary"}}}},"textColor":"secondary"} -->
|
||||
<p class="has-secondary-color has-text-color has-link-color"><?php echo __('+', 'wp-dos');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"elements":{"link":{"color":{"text":"var:preset|color|secondary"}}}},"textColor":"secondary"} -->
|
||||
<p class="has-secondary-color has-text-color has-link-color"><?php echo __('+', 'wp-dos');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"elements":{"link":{"color":{"text":"var:preset|color|secondary"}}}},"textColor":"secondary"} -->
|
||||
<p class="has-secondary-color has-text-color has-link-color"><?php echo __('+', 'wp-dos');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"elements":{"link":{"color":{"text":"var:preset|color|secondary"}}}},"textColor":"secondary"} -->
|
||||
<p class="has-secondary-color has-text-color has-link-color"><?php echo __('+', 'wp-dos');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"elements":{"link":{"color":{"text":"var:preset|color|secondary"}}}},"textColor":"secondary"} -->
|
||||
<p class="has-secondary-color has-text-color has-link-color"><?php echo __('+', 'wp-dos');?></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns -->
|
||||
<!-- /wp:post-template -->
|
||||
|
||||
<!-- wp:group {"align":"full","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group alignfull"><!-- 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 --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /--></div></div>
|
||||
<!-- /wp:cover -->
|
53
wp-dos/patterns/comments.php
Normal file
53
wp-dos/patterns/comments.php
Normal file
|
@ -0,0 +1,53 @@
|
|||
<?php declare( strict_types = 1 ); ?>
|
||||
<?php
|
||||
/**
|
||||
* Title: Comments
|
||||
* slug: wp-dos/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 -->
|
46
wp-dos/patterns/footer.php
Normal file
46
wp-dos/patterns/footer.php
Normal file
|
@ -0,0 +1,46 @@
|
|||
<?php declare( strict_types = 1 ); ?>
|
||||
<?php
|
||||
/**
|
||||
* Title: footer
|
||||
* Slug: wp-dos/footer
|
||||
* Categories: hidden
|
||||
* Inserter: no
|
||||
*/
|
||||
?>
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"0","bottom":"0"}},"position":{"type":""}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-top:0;padding-bottom:0"><!-- wp:columns {"verticalAlignment":"top","align":"full","style":{"spacing":{"blockGap":{"top":"0"}},"border":{"top":{"width":"1px","style":"dotted"}}}} -->
|
||||
<div class="wp-block-columns alignfull are-vertically-aligned-top" style="border-top-style:dotted;border-top-width:1px"><!-- wp:column {"verticalAlignment":"top","width":"55%","style":{"spacing":{"padding":{"top":"var:preset|spacing|40"}}}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="padding-top:var(--wp--preset--spacing--40);flex-basis:55%"><!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|40"}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
|
||||
<div class="wp-block-group"><!-- wp:paragraph {"align":"left","style":{"typography":{"textTransform":"uppercase"}}} -->
|
||||
<p class="has-text-align-left" style="text-transform:uppercase"><?php echo __('<a href="#">Linkedin</a>', 'wp-dos');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"align":"left","style":{"typography":{"textTransform":"uppercase"}}} -->
|
||||
<p class="has-text-align-left" style="text-transform:uppercase"><?php echo __('<a href="#">Tumblr</a>', 'wp-dos');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"align":"left","style":{"typography":{"textTransform":"uppercase"}}} -->
|
||||
<p class="has-text-align-left" style="text-transform:uppercase"><?php echo __('<a href="#">GitHub</a>', 'wp-dos');?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:paragraph {"align":"left","style":{"typography":{"textTransform":"uppercase"}}} -->
|
||||
<p class="has-text-align-left" style="text-transform:uppercase"><?php echo __('<a href="#">Mastodon</a>', 'wp-dos');?></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"top","width":"5%"} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="flex-basis:5%"></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"top","width":"20%"} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="flex-basis:20%"></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"top","width":"20%","style":{"spacing":{"padding":{"top":"var:preset|spacing|40"}}}} -->
|
||||
<div class="wp-block-column is-vertically-aligned-top" style="padding-top:var(--wp--preset--spacing--40);flex-basis:20%"><!-- wp:paragraph {"align":"left"} -->
|
||||
<p class="has-text-align-left"><?php echo __('Designed with <a href="https://wordpress.org" rel="nofollow">WordPress</a>.', 'wp-dos');?></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></div>
|
||||
<!-- /wp:group -->
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue