Strand: Add theme (#7271)
* Strand: Add theme Co-authored-by: Jason Crist <jcrist@pbking.com>
This commit is contained in:
parent
1a4d4d8d6a
commit
13849d6841
48 changed files with 1339 additions and 0 deletions
BIN
strand/assets/fonts/newsreader_italic_200.ttf
Normal file
BIN
strand/assets/fonts/newsreader_italic_200.ttf
Normal file
Binary file not shown.
BIN
strand/assets/fonts/newsreader_italic_300.ttf
Normal file
BIN
strand/assets/fonts/newsreader_italic_300.ttf
Normal file
Binary file not shown.
BIN
strand/assets/fonts/newsreader_italic_400.ttf
Normal file
BIN
strand/assets/fonts/newsreader_italic_400.ttf
Normal file
Binary file not shown.
BIN
strand/assets/fonts/newsreader_italic_500.ttf
Normal file
BIN
strand/assets/fonts/newsreader_italic_500.ttf
Normal file
Binary file not shown.
BIN
strand/assets/fonts/newsreader_italic_600.ttf
Normal file
BIN
strand/assets/fonts/newsreader_italic_600.ttf
Normal file
Binary file not shown.
BIN
strand/assets/fonts/newsreader_italic_700.ttf
Normal file
BIN
strand/assets/fonts/newsreader_italic_700.ttf
Normal file
Binary file not shown.
BIN
strand/assets/fonts/newsreader_italic_800.ttf
Normal file
BIN
strand/assets/fonts/newsreader_italic_800.ttf
Normal file
Binary file not shown.
BIN
strand/assets/fonts/newsreader_normal_200.ttf
Normal file
BIN
strand/assets/fonts/newsreader_normal_200.ttf
Normal file
Binary file not shown.
BIN
strand/assets/fonts/newsreader_normal_300.ttf
Normal file
BIN
strand/assets/fonts/newsreader_normal_300.ttf
Normal file
Binary file not shown.
BIN
strand/assets/fonts/newsreader_normal_400.ttf
Normal file
BIN
strand/assets/fonts/newsreader_normal_400.ttf
Normal file
Binary file not shown.
BIN
strand/assets/fonts/newsreader_normal_500.ttf
Normal file
BIN
strand/assets/fonts/newsreader_normal_500.ttf
Normal file
Binary file not shown.
BIN
strand/assets/fonts/newsreader_normal_600.ttf
Normal file
BIN
strand/assets/fonts/newsreader_normal_600.ttf
Normal file
Binary file not shown.
BIN
strand/assets/fonts/newsreader_normal_700.ttf
Normal file
BIN
strand/assets/fonts/newsreader_normal_700.ttf
Normal file
Binary file not shown.
BIN
strand/assets/fonts/newsreader_normal_800.ttf
Normal file
BIN
strand/assets/fonts/newsreader_normal_800.ttf
Normal file
Binary file not shown.
BIN
strand/assets/fonts/plus-jakarta-sans_italic_200.ttf
Normal file
BIN
strand/assets/fonts/plus-jakarta-sans_italic_200.ttf
Normal file
Binary file not shown.
BIN
strand/assets/fonts/plus-jakarta-sans_italic_300.ttf
Normal file
BIN
strand/assets/fonts/plus-jakarta-sans_italic_300.ttf
Normal file
Binary file not shown.
BIN
strand/assets/fonts/plus-jakarta-sans_italic_400.ttf
Normal file
BIN
strand/assets/fonts/plus-jakarta-sans_italic_400.ttf
Normal file
Binary file not shown.
BIN
strand/assets/fonts/plus-jakarta-sans_italic_500.ttf
Normal file
BIN
strand/assets/fonts/plus-jakarta-sans_italic_500.ttf
Normal file
Binary file not shown.
BIN
strand/assets/fonts/plus-jakarta-sans_italic_600.ttf
Normal file
BIN
strand/assets/fonts/plus-jakarta-sans_italic_600.ttf
Normal file
Binary file not shown.
BIN
strand/assets/fonts/plus-jakarta-sans_italic_700.ttf
Normal file
BIN
strand/assets/fonts/plus-jakarta-sans_italic_700.ttf
Normal file
Binary file not shown.
BIN
strand/assets/fonts/plus-jakarta-sans_italic_800.ttf
Normal file
BIN
strand/assets/fonts/plus-jakarta-sans_italic_800.ttf
Normal file
Binary file not shown.
BIN
strand/assets/fonts/plus-jakarta-sans_normal_200.ttf
Normal file
BIN
strand/assets/fonts/plus-jakarta-sans_normal_200.ttf
Normal file
Binary file not shown.
BIN
strand/assets/fonts/plus-jakarta-sans_normal_300.ttf
Normal file
BIN
strand/assets/fonts/plus-jakarta-sans_normal_300.ttf
Normal file
Binary file not shown.
BIN
strand/assets/fonts/plus-jakarta-sans_normal_400.ttf
Normal file
BIN
strand/assets/fonts/plus-jakarta-sans_normal_400.ttf
Normal file
Binary file not shown.
BIN
strand/assets/fonts/plus-jakarta-sans_normal_500.ttf
Normal file
BIN
strand/assets/fonts/plus-jakarta-sans_normal_500.ttf
Normal file
Binary file not shown.
BIN
strand/assets/fonts/plus-jakarta-sans_normal_600.ttf
Normal file
BIN
strand/assets/fonts/plus-jakarta-sans_normal_600.ttf
Normal file
Binary file not shown.
BIN
strand/assets/fonts/plus-jakarta-sans_normal_700.ttf
Normal file
BIN
strand/assets/fonts/plus-jakarta-sans_normal_700.ttf
Normal file
Binary file not shown.
BIN
strand/assets/fonts/plus-jakarta-sans_normal_800.ttf
Normal file
BIN
strand/assets/fonts/plus-jakarta-sans_normal_800.ttf
Normal file
Binary file not shown.
60
strand/functions.php
Normal file
60
strand/functions.php
Normal file
|
@ -0,0 +1,60 @@
|
|||
<?php
|
||||
/**
|
||||
* Strand functions and definitions
|
||||
*
|
||||
* @link https://developer.wordpress.org/themes/basics/theme-functions/
|
||||
*
|
||||
* @package Strand
|
||||
* @since Strand 1.0
|
||||
*/
|
||||
|
||||
|
||||
if ( ! function_exists( 'strand_support' ) ) :
|
||||
|
||||
/**
|
||||
* Sets up theme defaults and registers support for various WordPress features.
|
||||
*
|
||||
* @since Strand 1.0
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function strand_support() {
|
||||
|
||||
// Enqueue editor styles.
|
||||
add_editor_style( 'style.css' );
|
||||
|
||||
// Make theme available for translation.
|
||||
load_theme_textdomain( 'strand' );
|
||||
}
|
||||
|
||||
endif;
|
||||
|
||||
add_action( 'after_setup_theme', 'strand_support' );
|
||||
|
||||
if ( ! function_exists( 'strand_styles' ) ) :
|
||||
|
||||
/**
|
||||
* Enqueue styles.
|
||||
*
|
||||
* @since Strand 1.0
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function strand_styles() {
|
||||
|
||||
// Register theme stylesheet.
|
||||
wp_register_style(
|
||||
'strand-style',
|
||||
get_stylesheet_directory_uri() . '/style.css',
|
||||
array(),
|
||||
wp_get_theme()->get( 'Version' )
|
||||
);
|
||||
|
||||
// Enqueue theme stylesheet.
|
||||
wp_enqueue_style( 'strand-style' );
|
||||
|
||||
}
|
||||
|
||||
endif;
|
||||
|
||||
add_action( 'wp_enqueue_scripts', 'strand_styles' );
|
1
strand/parts/footer-widgets.html
Normal file
1
strand/parts/footer-widgets.html
Normal file
|
@ -0,0 +1 @@
|
|||
<!-- wp:pattern {"slug":"strand/footer-widgets"} /-->
|
1
strand/parts/footer.html
Normal file
1
strand/parts/footer.html
Normal file
|
@ -0,0 +1 @@
|
|||
<!-- wp:pattern {"slug":"strand/footer"} -->
|
7
strand/parts/header.html
Normal file
7
strand/parts/header.html
Normal file
|
@ -0,0 +1,7 @@
|
|||
<!-- wp:group {"style":{"position":{"type":"sticky","top":"0px"}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group"><!-- wp:site-title /-->
|
||||
|
||||
<!-- wp:site-tagline /-->
|
||||
|
||||
<!-- wp:jetpack/subscriptions {"buttonOnNewLine":true,"buttonWidth":"100%","buttonBackgroundColor":"background","textColor":"primary","borderColor":"background"} /--></div>
|
||||
<!-- /wp:group -->
|
21
strand/patterns/404.php
Normal file
21
strand/patterns/404.php
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: A 404 page
|
||||
* Slug: strand/404
|
||||
* Inserter: no
|
||||
*/
|
||||
?>
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|80","right":"var:preset|spacing|60","bottom":"var:preset|spacing|80","left":"var:preset|spacing|60"}},"color":{"background":"#f5f5f5"},"border":{"bottom":{"color":"#1e1e1e26","width":"1px"},"top":[],"right":[],"left":[]}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group has-background" style="border-bottom-color:#1e1e1e26;border-bottom-width:1px;background-color:#f5f5f5;padding-top:var(--wp--preset--spacing--80);padding-right:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--80);padding-left:var(--wp--preset--spacing--60)"><!-- wp:heading {"level":1,"anchor":"oops-that-page-can-t-be-found"} -->
|
||||
<h1 class="wp-block-heading" id="oops-that-page-can-t-be-found"><?php echo esc_html__( 'Oops! That page can’t be found.', 'strand' ); ?></h1>
|
||||
<!-- /wp:heading --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|80","right":"var:preset|spacing|60","bottom":"var:preset|spacing|80","left":"var:preset|spacing|60"}},"dimensions":{"minHeight":"50vh"}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="min-height:50vh;padding-top:var(--wp--preset--spacing--80);padding-right:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--80);padding-left:var(--wp--preset--spacing--60)"><!-- wp:paragraph -->
|
||||
<p><?php echo esc_html__( 'It looks like nothing was found at this location. Maybe try a search?', 'strand' ); ?></p>
|
||||
<!-- /wp:paragraph -->
|
||||
|
||||
<!-- wp:search {"label":"Search","showLabel":false,"buttonText":"Search"} /--></div>
|
||||
<!-- /wp:group -->
|
29
strand/patterns/footer-widgets.php
Normal file
29
strand/patterns/footer-widgets.php
Normal file
|
@ -0,0 +1,29 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: Footer Widget Area
|
||||
* Slug: strand/footer-widgets
|
||||
* Categories: featured
|
||||
*/
|
||||
?>
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|80","right":"var:preset|spacing|60","bottom":"var:preset|spacing|80","left":"var:preset|spacing|60"}},"border":{"top":{"color":"#1e1e1e26","width":"1px"},"right":[],"bottom":[],"left":[]}},"backgroundColor":"tertiary","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group has-tertiary-background-color has-background" style="border-top-color:#1e1e1e26;border-top-width:1px;padding-top:var(--wp--preset--spacing--80);padding-right:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--80);padding-left:var(--wp--preset--spacing--60)"><!-- wp:columns -->
|
||||
<div class="wp-block-columns"><!-- wp:column -->
|
||||
<div class="wp-block-column"><!-- wp:heading {"level":3,"style":{"typography":{"fontStyle":"normal","fontWeight":"600","textTransform":"uppercase","letterSpacing":"1px"}},"textColor":"primary","fontSize":"small"} -->
|
||||
<h3 class="wp-block-heading has-primary-color has-text-color has-small-font-size" style="font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase"><?php echo esc_html__( '— Navigation', 'strand' ); ?></h3>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:navigation {"overlayMenu":"never","layout":{"type":"flex","orientation":"vertical"},"style":{"spacing":{"blockGap":"0"},"typography":{"fontSize":"1rem","lineHeight":1.6}}} /--></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column -->
|
||||
<div class="wp-block-column"><!-- wp:heading {"level":3,"style":{"typography":{"fontStyle":"normal","fontWeight":"600","textTransform":"uppercase","letterSpacing":"1px"}},"textColor":"primary","fontSize":"small"} -->
|
||||
<h3 class="wp-block-heading has-primary-color has-text-color has-small-font-size" style="font-style:normal;font-weight:600;letter-spacing:1px;text-transform:uppercase"><?php echo esc_html__( '— About the author', 'strand' ); ?></h3>
|
||||
<!-- /wp:heading -->
|
||||
|
||||
<!-- wp:paragraph {"style":{"typography":{"fontSize":"1rem"}}} -->
|
||||
<p style="font-size:1rem"><?php echo esc_html__( 'Meet Ava Montgomery, a passionate storyteller who started as a journalist and now writes freelance, uncovering unique tales from diverse cultures.', 'strand' ); ?></p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns --></div>
|
||||
<!-- /wp:group -->
|
25
strand/patterns/footer.php
Normal file
25
strand/patterns/footer.php
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: Default footer
|
||||
* Slug: strand/footer
|
||||
* Categories: footer
|
||||
* Block Types: core/template-part/footer
|
||||
*/
|
||||
?>
|
||||
|
||||
<!-- wp:group {"style":{"border":{"top":{"color":"#1e1e1e26","width":"1px"}},"spacing":{"padding":{"right":"var:preset|spacing|60","left":"var:preset|spacing|60"}}},"backgroundColor":"tertiary","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group has-tertiary-background-color has-background" style="border-top-color:#1e1e1e26;border-top-width:1px;padding-right:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--60)"><!-- wp:group {"style":{"spacing":{"padding":{"top":"var(--wp--preset--spacing--60)","bottom":"var(--wp--preset--spacing--60)"}}}} -->
|
||||
<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60)"><!-- wp:paragraph {"align":"left","fontSize":"small"} -->
|
||||
<p class="has-text-align-left has-small-font-size">
|
||||
<?php
|
||||
/* Translators: WordPress link. */
|
||||
$wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'strand' ) ) . '" rel="nofollow">WordPress</a>';
|
||||
echo sprintf(
|
||||
esc_html__( 'Designed with %1$s', 'strand' ),
|
||||
$wordpress_link
|
||||
);
|
||||
?>
|
||||
</p>
|
||||
<!-- /wp:paragraph --></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
10
strand/patterns/hidden-no-results-content.php
Normal file
10
strand/patterns/hidden-no-results-content.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
/**
|
||||
* Title: Hidden No Results Content
|
||||
* Slug: strand/hidden-no-results-content
|
||||
* Inserter: no
|
||||
*/
|
||||
?>
|
||||
<!-- wp:paragraph -->
|
||||
<p><?php echo esc_html_x( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'Message explaining that there are no results returned from a search', 'snd' ); ?></p>
|
||||
<!-- /wp:paragraph -->
|
46
strand/readme.txt
Normal file
46
strand/readme.txt
Normal file
|
@ -0,0 +1,46 @@
|
|||
=== Strand ===
|
||||
Contributors: Automattic
|
||||
Requires at least: 5.8
|
||||
Tested up to: 5.9
|
||||
Requires PHP: 5.7
|
||||
License: GPLv2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
|
||||
== Description ==
|
||||
|
||||
Strand is a simple blogging and newsletter theme. The main feature is its split layout, with a full height column containing a sticky header and subscription form and scrollable content in the other column.
|
||||
|
||||
== Changelog ==
|
||||
|
||||
= 1.0.0 =
|
||||
* Initial release
|
||||
|
||||
== Copyright ==
|
||||
|
||||
Strand WordPress Theme, (C) 2023 Automattic
|
||||
Strand 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.
|
||||
|
||||
|
||||
Plus Jakarta Sans Font
|
||||
Copyright 2020 The Plus Jakarta Sans Project Authors (https://github.com/tokotype/PlusJakartaSans)
|
||||
This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL
|
||||
License URL: http://scripts.sil.org/OFL
|
||||
Source: https://www.tokotype.com
|
||||
-- End of Plus Jakarta Sans Font credits --
|
||||
|
||||
Newsreader Font
|
||||
Copyright 2020 The Newsreader Project Authors (http://github.com/productiontype/Newsreader)
|
||||
This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL
|
||||
License URL: http://scripts.sil.org/OFL
|
||||
Source: http://www.productiontype.com/
|
||||
-- End of Newsreader Font credits --
|
BIN
strand/screenshot.png
Normal file
BIN
strand/screenshot.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 163 KiB |
64
strand/style.css
Normal file
64
strand/style.css
Normal file
|
@ -0,0 +1,64 @@
|
|||
/*
|
||||
Theme Name: Strand
|
||||
Theme URI:
|
||||
Author: Automattic
|
||||
Author URI: https://automattic.com
|
||||
Description: Strand is a simple blogging and newsletter theme. The main feature is its split layout, with a full height column containing a sticky header and subscription form and scrollable content on the other column.
|
||||
Requires at least: 5.8
|
||||
Tested up to: 5.9
|
||||
Requires PHP: 5.7
|
||||
Version: 0.0.1
|
||||
License: GNU General Public License v2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
Template:
|
||||
Text Domain: strand
|
||||
Tags: blog, editor-style, full-site-editing, translation-ready
|
||||
|
||||
*//*
|
||||
* Control the hover stylings of outline block style.
|
||||
* Unnecessary once block styles are configurable via theme.json
|
||||
* https://github.com/WordPress/gutenberg/issues/42794
|
||||
*/
|
||||
.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;
|
||||
}
|
||||
|
||||
.wp-block-separator.is-style-default {
|
||||
width: 50px;
|
||||
margin-left: 0;
|
||||
color: rgba(0,0,0,0.15);
|
||||
}
|
36
strand/styles/blue.json
Normal file
36
strand/styles/blue.json
Normal file
|
@ -0,0 +1,36 @@
|
|||
{
|
||||
"settings": {
|
||||
"color": {
|
||||
"palette": [
|
||||
{
|
||||
"color": "#2837EB",
|
||||
"name": "Primary",
|
||||
"slug": "primary"
|
||||
},
|
||||
{
|
||||
"color": "#1e1e1e",
|
||||
"name": "Secondary",
|
||||
"slug": "secondary"
|
||||
},
|
||||
{
|
||||
"color": "#666666",
|
||||
"name": "Foreground",
|
||||
"slug": "foreground"
|
||||
},
|
||||
{
|
||||
"color": "#ffffff",
|
||||
"name": "Background",
|
||||
"slug": "background"
|
||||
},
|
||||
{
|
||||
"color": "#fafafa",
|
||||
"name": "Tertiary",
|
||||
"slug": "tertiary"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"title": "Blue",
|
||||
"version": 2,
|
||||
"$schema": "https://schemas.wp.org/trunk/theme.json"
|
||||
}
|
36
strand/styles/green.json
Normal file
36
strand/styles/green.json
Normal file
|
@ -0,0 +1,36 @@
|
|||
{
|
||||
"settings": {
|
||||
"color": {
|
||||
"palette": [
|
||||
{
|
||||
"color": "#285418",
|
||||
"name": "Primary",
|
||||
"slug": "primary"
|
||||
},
|
||||
{
|
||||
"color": "#1e1e1e",
|
||||
"name": "Secondary",
|
||||
"slug": "secondary"
|
||||
},
|
||||
{
|
||||
"color": "#666666",
|
||||
"name": "Foreground",
|
||||
"slug": "foreground"
|
||||
},
|
||||
{
|
||||
"color": "#ffffff",
|
||||
"name": "Background",
|
||||
"slug": "background"
|
||||
},
|
||||
{
|
||||
"color": "#fafafa",
|
||||
"name": "Tertiary",
|
||||
"slug": "tertiary"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"title": "Green",
|
||||
"version": 2,
|
||||
"$schema": "https://schemas.wp.org/trunk/theme.json"
|
||||
}
|
17
strand/templates/404.html
Normal file
17
strand/templates/404.html
Normal file
|
@ -0,0 +1,17 @@
|
|||
<!-- wp:columns {"style":{"spacing":{"blockGap":{"top":"0","left":"0"}}}} -->
|
||||
<div class="wp-block-columns"><!-- wp:column {"width":"25%","lock":{"move":false,"remove":false}} -->
|
||||
<div class="wp-block-column" style="flex-basis:25%"><!-- wp:group {"style":{"position":{"type":"sticky","top":"0px"},"spacing":{"padding":{"right":"var:preset|spacing|60","top":"var:preset|spacing|80","bottom":"var:preset|spacing|60","left":"var:preset|spacing|60"}},"dimensions":{"minHeight":"100vh"}},"backgroundColor":"primary","textColor":"background","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group has-background-color has-primary-background-color has-text-color has-background" style="min-height:100vh;padding-top:var(--wp--preset--spacing--80);padding-right:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--60)"><!-- wp:template-part {"slug":"header"} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"style":{"spacing":{"blockGap":"0"}}} -->
|
||||
<div class="wp-block-column">
|
||||
|
||||
<!-- wp:pattern {"slug":"strand/404"} /-->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer-widgets"} /-->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer"} /--></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns -->
|
46
strand/templates/archive.html
Normal file
46
strand/templates/archive.html
Normal file
|
@ -0,0 +1,46 @@
|
|||
<!-- wp:columns {"style":{"spacing":{"blockGap":{"top":"0","left":"0"}}}} -->
|
||||
<div class="wp-block-columns"><!-- wp:column {"width":"25%","lock":{"move":false,"remove":false}} -->
|
||||
<div class="wp-block-column" style="flex-basis:25%"><!-- wp:group {"style":{"position":{"type":"sticky","top":"0px"},"spacing":{"padding":{"right":"var:preset|spacing|60","top":"var:preset|spacing|80","bottom":"var:preset|spacing|60","left":"var:preset|spacing|60"}},"dimensions":{"minHeight":"100vh"}},"backgroundColor":"primary","textColor":"background","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group has-background-color has-primary-background-color has-text-color has-background" style="min-height:100vh;padding-top:var(--wp--preset--spacing--80);padding-right:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--60)"><!-- wp:template-part {"slug":"header"} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"style":{"spacing":{"blockGap":"0"}}} -->
|
||||
<div class="wp-block-column">
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|80","right":"var:preset|spacing|60","bottom":"var:preset|spacing|80","left":"var:preset|spacing|60"}},"border":{"bottom":{"color":"#1e1e1e26","width":"1px"}}},"backgroundColor":"tertiary","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group has-tertiary-background-color has-background" style="border-bottom-color:#1e1e1e26;border-bottom-width:1px;padding-top:var(--wp--preset--spacing--80);padding-right:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--80);padding-left:var(--wp--preset--spacing--60)"><!-- wp:query-title {"type":"archive"} /-->
|
||||
|
||||
<!-- wp:term-description /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|80","right":"var:preset|spacing|60","bottom":"var:preset|spacing|80","left":"var:preset|spacing|60"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--80);padding-right:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--80);padding-left:var(--wp--preset--spacing--60)"><!-- wp:query {"queryId":10,"query":{"perPage":"5","pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"exclude","inherit":true},"displayLayout":{"type":"list","columns":2}} -->
|
||||
<div class="wp-block-query"><!-- wp:post-template -->
|
||||
<!-- wp:group {"layout":{"inherit":false}} -->
|
||||
<div class="wp-block-group"><!-- wp:post-date {"style":{"typography":{"fontSize":"0.88rem"}}} /-->
|
||||
|
||||
<!-- wp:post-title {"isLink":true,"fontSize":"large"} /-->
|
||||
|
||||
<!-- wp:post-excerpt {"moreText":"","excerptLength":30} /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:separator {"style":{"spacing":{"margin":{"top":"var:preset|spacing|70","bottom":"var:preset|spacing|70"}}},"className":"is-style-default"} -->
|
||||
<hr class="wp-block-separator has-alpha-channel-opacity is-style-default" style="margin-top:var(--wp--preset--spacing--70);margin-bottom:var(--wp--preset--spacing--70)"/>
|
||||
<!-- /wp:separator -->
|
||||
<!-- /wp:post-template -->
|
||||
|
||||
<!-- wp:query-pagination {"layout":{"type":"flex","justifyContent":"space-between"}} -->
|
||||
<!-- wp:query-pagination-previous /-->
|
||||
|
||||
<!-- wp:query-pagination-numbers /-->
|
||||
|
||||
<!-- wp:query-pagination-next /-->
|
||||
<!-- /wp:query-pagination --></div>
|
||||
<!-- /wp:query --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer-widgets"} /-->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer"} /--></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns -->
|
35
strand/templates/index.html
Normal file
35
strand/templates/index.html
Normal file
|
@ -0,0 +1,35 @@
|
|||
<!-- wp:columns {"style":{"spacing":{"blockGap":{"top":"0","left":"0"}}}} -->
|
||||
<div class="wp-block-columns"><!-- wp:column {"width":"25%","lock":{"move":false,"remove":false}} -->
|
||||
<div class="wp-block-column" style="flex-basis:25%"><!-- wp:group {"style":{"position":{"type":"sticky","top":"0px"},"spacing":{"padding":{"right":"var:preset|spacing|60","top":"var:preset|spacing|80","bottom":"var:preset|spacing|60","left":"var:preset|spacing|60"}},"dimensions":{"minHeight":"100vh"}},"backgroundColor":"primary","textColor":"background","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group has-background-color has-primary-background-color has-text-color has-background" style="min-height:100vh;padding-top:var(--wp--preset--spacing--80);padding-right:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--60)"><!-- wp:template-part {"slug":"header"} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"style":{"spacing":{"blockGap":"0"}}} -->
|
||||
<div class="wp-block-column">
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|80","right":"var:preset|spacing|60","bottom":"var:preset|spacing|80","left":"var:preset|spacing|60"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--80);padding-right:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--80);padding-left:var(--wp--preset--spacing--60)">
|
||||
|
||||
<!-- wp:query {"queryId":10,"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"exclude","inherit":true}} -->
|
||||
<div class="wp-block-query">
|
||||
<!-- wp:post-template -->
|
||||
<!-- wp:group {"layout":{"inherit":false}} -->
|
||||
<div class="wp-block-group"><!-- wp:post-date {"style":{"typography":{"fontSize":"0.88rem"}},"fontFamily":"open-sauce-sans"} /-->
|
||||
|
||||
<!-- wp:post-title {"isLink":true,"fontSize":"large"} /-->
|
||||
|
||||
<!-- wp:post-excerpt {"moreText":"","excerptLength":30} /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:separator {"style":{"spacing":{"margin":{"top":"var:preset|spacing|70","bottom":"var:preset|spacing|70"}}},"className":"is-style-default"} -->
|
||||
<hr class="wp-block-separator has-alpha-channel-opacity is-style-default" style="margin-top:var(--wp--preset--spacing--70);margin-bottom:var(--wp--preset--spacing--70)"/>
|
||||
<!-- /wp:separator -->
|
||||
<!-- /wp:post-template --></div>
|
||||
<!-- /wp:query --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer-widgets"} /-->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer","area":"footer"} /--></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns -->
|
61
strand/templates/page.html
Normal file
61
strand/templates/page.html
Normal file
|
@ -0,0 +1,61 @@
|
|||
<!-- wp:columns {"style":{"spacing":{"blockGap":{"top":"0","left":"0"}}}} -->
|
||||
<div class="wp-block-columns"><!-- wp:column {"width":"25%","lock":{"move":false,"remove":false}} -->
|
||||
<div class="wp-block-column" style="flex-basis:25%"><!-- wp:group {"style":{"position":{"type":"sticky","top":"0px"},"spacing":{"padding":{"right":"var:preset|spacing|60","top":"var:preset|spacing|80","bottom":"var:preset|spacing|60","left":"var:preset|spacing|60"}},"dimensions":{"minHeight":"100vh"}},"backgroundColor":"primary","textColor":"background","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group has-background-color has-primary-background-color has-text-color has-background" style="min-height:100vh;padding-top:var(--wp--preset--spacing--80);padding-right:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--60)"><!-- wp:template-part {"slug":"header"} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"style":{"spacing":{"blockGap":"0"}}} -->
|
||||
<div class="wp-block-column"><!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|80","right":"var:preset|spacing|60","bottom":"var:preset|spacing|80","left":"var:preset|spacing|60"}},"color":{"background":"#f5f5f5"},"border":{"bottom":{"color":"#1e1e1e26","width":"1px"},"top":[],"right":[],"left":[]}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group has-background" style="border-bottom-color:#1e1e1e26;border-bottom-width:1px;background-color:#f5f5f5;padding-top:var(--wp--preset--spacing--80);padding-right:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--80);padding-left:var(--wp--preset--spacing--60)"><!-- wp:post-title {"level":1} /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|80","right":"var:preset|spacing|60","bottom":"var:preset|spacing|80","left":"var:preset|spacing|60"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--80);padding-right:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--80);padding-left:var(--wp--preset--spacing--60)"><!-- wp:post-content /-->
|
||||
|
||||
<!-- wp:spacer {"height":"90px"} -->
|
||||
<div style="height:90px" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer -->
|
||||
|
||||
<!-- wp:comments -->
|
||||
<div class="wp-block-comments"><!-- wp:comments-title /-->
|
||||
|
||||
<!-- wp:comment-template -->
|
||||
<!-- wp:columns -->
|
||||
<div class="wp-block-columns"><!-- wp:column {"width":"40px"} -->
|
||||
<div class="wp-block-column" style="flex-basis:40px"><!-- wp:avatar {"size":40,"style":{"border":{"radius":"20px"}}} /--></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"center"} -->
|
||||
<div class="wp-block-column is-vertically-aligned-center"><!-- wp:group {"style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}},"layout":{"type":"flex"}} -->
|
||||
<div class="wp-block-group" style="margin-top:0px;margin-bottom:0px"><!-- wp:comment-author-name /-->
|
||||
|
||||
<!-- wp:comment-date {"fontSize":"small"} /-->
|
||||
|
||||
<!-- wp:comment-edit-link {"fontSize":"small"} /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:comment-content /-->
|
||||
|
||||
<!-- wp:comment-reply-link {"fontSize":"small"} /--></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns -->
|
||||
<!-- /wp:comment-template -->
|
||||
|
||||
<!-- wp:comments-pagination -->
|
||||
<!-- wp:comments-pagination-previous /-->
|
||||
|
||||
<!-- wp:comments-pagination-numbers /-->
|
||||
|
||||
<!-- wp:comments-pagination-next /-->
|
||||
<!-- /wp:comments-pagination -->
|
||||
|
||||
<!-- wp:post-comments-form /--></div>
|
||||
<!-- /wp:comments --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer-widgets"} /-->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer"} /--></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns -->
|
53
strand/templates/search.html
Normal file
53
strand/templates/search.html
Normal file
|
@ -0,0 +1,53 @@
|
|||
<!-- wp:columns {"style":{"spacing":{"blockGap":{"top":"0","left":"0"}}}} -->
|
||||
<div class="wp-block-columns"><!-- wp:column {"width":"25%","lock":{"move":false,"remove":false}} -->
|
||||
<div class="wp-block-column" style="flex-basis:25%"><!-- wp:group {"style":{"position":{"type":"sticky","top":"0px"},"spacing":{"padding":{"right":"var:preset|spacing|60","top":"var:preset|spacing|80","bottom":"var:preset|spacing|60","left":"var:preset|spacing|60"}},"dimensions":{"minHeight":"100vh"}},"backgroundColor":"primary","textColor":"background","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group has-background-color has-primary-background-color has-text-color has-background" style="min-height:100vh;padding-top:var(--wp--preset--spacing--80);padding-right:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--60)"><!-- wp:template-part {"slug":"header"} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"style":{"spacing":{"blockGap":"0"}}} -->
|
||||
<div class="wp-block-column"><!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|80","right":"var:preset|spacing|60","bottom":"var:preset|spacing|80","left":"var:preset|spacing|60"}},"color":{"background":"#f5f5f5"},"border":{"bottom":{"color":"#1e1e1e26","width":"1px"},"top":[],"right":[],"left":[]}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group has-background" style="border-bottom-color:#1e1e1e26;border-bottom-width:1px;background-color:#f5f5f5;padding-top:var(--wp--preset--spacing--80);padding-right:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--80);padding-left:var(--wp--preset--spacing--60)">
|
||||
<!-- wp:search {"label":"Search","showLabel":false,"buttonText":"Search"} /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|80","right":"var:preset|spacing|60","bottom":"var:preset|spacing|80","left":"var:preset|spacing|60"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--80);padding-right:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--80);padding-left:var(--wp--preset--spacing--60)"><!-- wp:query {"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true},"displayLayout":{"type":"list"}} -->
|
||||
<div class="wp-block-query">
|
||||
<!-- wp:query-title {"type":"search","level":2,"style":{"spacing":{"margin":{"bottom":"var:preset|spacing|70"}}}} /-->
|
||||
|
||||
<!-- wp:post-template -->
|
||||
<!-- wp:post-date /-->
|
||||
|
||||
<!-- wp:post-title {"isLink":true,"fontSize":"large"} /-->
|
||||
|
||||
<!-- wp:post-excerpt /-->
|
||||
|
||||
<!-- wp:separator {"style":{"spacing":{"margin":{"top":"var:preset|spacing|70","bottom":"var:preset|spacing|70"}}},"className":"is-style-default"} -->
|
||||
<hr class="wp-block-separator has-alpha-channel-opacity is-style-default" style="margin-top:var(--wp--preset--spacing--70);margin-bottom:var(--wp--preset--spacing--70)"/>
|
||||
<!-- /wp:separator -->
|
||||
<!-- /wp:post-template -->
|
||||
|
||||
<!-- wp:query-no-results -->
|
||||
<!-- wp:pattern {"slug":"strand/hidden-no-results-content"} /-->
|
||||
<!-- /wp:query-no-results -->
|
||||
|
||||
<!-- wp:spacer {"height":"60px"} -->
|
||||
<div style="height:60px" aria-hidden="true" class="wp-block-spacer"></div>
|
||||
<!-- /wp:spacer -->
|
||||
|
||||
<!-- wp:query-pagination {"layout":{"type":"flex","justifyContent":"space-between"}} -->
|
||||
<!-- wp:query-pagination-previous /-->
|
||||
|
||||
<!-- wp:query-pagination-numbers /-->
|
||||
|
||||
<!-- wp:query-pagination-next /-->
|
||||
<!-- /wp:query-pagination --></div>
|
||||
<!-- /wp:query --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer-widgets"} /-->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer"} /--></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns -->
|
67
strand/templates/single.html
Normal file
67
strand/templates/single.html
Normal file
|
@ -0,0 +1,67 @@
|
|||
<!-- wp:columns {"style":{"spacing":{"blockGap":{"top":"0","left":"0"}}}} -->
|
||||
<div class="wp-block-columns"><!-- wp:column {"width":"25%","lock":{"move":false,"remove":false}} -->
|
||||
<div class="wp-block-column" style="flex-basis:25%"><!-- wp:group {"style":{"position":{"type":"sticky","top":"0px"},"spacing":{"padding":{"right":"var:preset|spacing|60","top":"var:preset|spacing|80","bottom":"var:preset|spacing|60","left":"var:preset|spacing|60"}},"dimensions":{"minHeight":"100vh"}},"backgroundColor":"primary","textColor":"background","layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group has-background-color has-primary-background-color has-text-color has-background" style="min-height:100vh;padding-top:var(--wp--preset--spacing--80);padding-right:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--60)"><!-- wp:template-part {"slug":"header"} /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"style":{"spacing":{"blockGap":"0"}}} -->
|
||||
<div class="wp-block-column"><!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|80","right":"var:preset|spacing|60","bottom":"var:preset|spacing|80","left":"var:preset|spacing|60"}},"color":{"background":"#f5f5f5"},"border":{"bottom":{"color":"#1e1e1e26","width":"1px"},"top":[],"right":[],"left":[]}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group has-background" style="border-bottom-color:#1e1e1e26;border-bottom-width:1px;background-color:#f5f5f5;padding-top:var(--wp--preset--spacing--80);padding-right:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--80);padding-left:var(--wp--preset--spacing--60)"><!-- wp:post-terms {"term":"category"} /-->
|
||||
|
||||
<!-- wp:post-title /-->
|
||||
|
||||
<!-- wp:post-date /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|80","right":"var:preset|spacing|60","bottom":"var:preset|spacing|80","left":"var:preset|spacing|60"}}},"layout":{"type":"constrained"}} -->
|
||||
<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--80);padding-right:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--80);padding-left:var(--wp--preset--spacing--60)"><!-- wp:post-content /-->
|
||||
|
||||
<!-- wp:comments {"style":{"spacing":{"margin":{"top":"var:preset|spacing|80","right":"3.38rem","bottom":"var:preset|spacing|80","left":"3.38rem"}}}} -->
|
||||
<div class="wp-block-comments" style="margin-top:var(--wp--preset--spacing--80);margin-right:3.38rem;margin-bottom:var(--wp--preset--spacing--80);margin-left:3.38rem"><!-- wp:comments-title /-->
|
||||
|
||||
<!-- wp:comment-template -->
|
||||
<!-- wp:columns -->
|
||||
<div class="wp-block-columns"><!-- wp:column {"width":"40px"} -->
|
||||
<div class="wp-block-column" style="flex-basis:40px"><!-- wp:avatar {"size":40,"style":{"border":{"radius":"20px"}}} /--></div>
|
||||
<!-- /wp:column -->
|
||||
|
||||
<!-- wp:column {"verticalAlignment":"center"} -->
|
||||
<div class="wp-block-column is-vertically-aligned-center"><!-- wp:group {"style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}},"layout":{"type":"flex"}} -->
|
||||
<div class="wp-block-group" style="margin-top:0px;margin-bottom:0px"><!-- wp:comment-author-name /-->
|
||||
|
||||
<!-- wp:comment-date {"fontSize":"small"} /-->
|
||||
|
||||
<!-- wp:comment-edit-link {"fontSize":"small"} /--></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:comment-content /-->
|
||||
|
||||
<!-- wp:comment-reply-link {"fontSize":"small"} /--></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns -->
|
||||
<!-- /wp:comment-template -->
|
||||
|
||||
<!-- wp:comments-pagination {"layout":{"type":"flex","justifyContent":"space-between"}} -->
|
||||
<!-- wp:comments-pagination-previous /-->
|
||||
|
||||
<!-- wp:comments-pagination-numbers /-->
|
||||
|
||||
<!-- wp:comments-pagination-next /-->
|
||||
<!-- /wp:comments-pagination -->
|
||||
|
||||
<!-- wp:post-comments-form {"style":{"spacing":{"margin":{"top":"var:preset|spacing|70"}}}} /--></div>
|
||||
<!-- /wp:comments -->
|
||||
|
||||
<!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"space-between"}} -->
|
||||
<div class="wp-block-group"><!-- wp:post-navigation-link {"type":"previous"} /-->
|
||||
|
||||
<!-- wp:post-navigation-link /--></div>
|
||||
<!-- /wp:group --></div>
|
||||
<!-- /wp:group -->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer-widgets"} /-->
|
||||
|
||||
<!-- wp:template-part {"slug":"footer"} /--></div>
|
||||
<!-- /wp:column --></div>
|
||||
<!-- /wp:columns -->
|
724
strand/theme.json
Normal file
724
strand/theme.json
Normal file
|
@ -0,0 +1,724 @@
|
|||
{
|
||||
"settings": {
|
||||
"appearanceTools": true,
|
||||
"color": {
|
||||
"palette": [
|
||||
{
|
||||
"color": "#c11b25",
|
||||
"name": "Primary",
|
||||
"slug": "primary"
|
||||
},
|
||||
{
|
||||
"color": "#1e1e1e",
|
||||
"name": "Secondary",
|
||||
"slug": "secondary"
|
||||
},
|
||||
{
|
||||
"color": "#666666",
|
||||
"name": "Foreground",
|
||||
"slug": "foreground"
|
||||
},
|
||||
{
|
||||
"color": "#ffffff",
|
||||
"name": "Background",
|
||||
"slug": "background"
|
||||
},
|
||||
{
|
||||
"color": "#fafafa",
|
||||
"name": "Tertiary",
|
||||
"slug": "tertiary"
|
||||
}
|
||||
]
|
||||
},
|
||||
"layout": {
|
||||
"contentSize": "650px",
|
||||
"wideSize": "1000px"
|
||||
},
|
||||
"spacing": {
|
||||
"units": [
|
||||
"%",
|
||||
"px",
|
||||
"em",
|
||||
"rem",
|
||||
"vh",
|
||||
"vw"
|
||||
]
|
||||
},
|
||||
"typography": {
|
||||
"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": "Plus Jakarta Sans",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "200",
|
||||
"src": [
|
||||
"file:./assets/fonts/plus-jakarta-sans_normal_200.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Plus Jakarta Sans",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "300",
|
||||
"src": [
|
||||
"file:./assets/fonts/plus-jakarta-sans_normal_300.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Plus Jakarta Sans",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "400",
|
||||
"src": [
|
||||
"file:./assets/fonts/plus-jakarta-sans_normal_400.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Plus Jakarta Sans",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "500",
|
||||
"src": [
|
||||
"file:./assets/fonts/plus-jakarta-sans_normal_500.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Plus Jakarta Sans",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "600",
|
||||
"src": [
|
||||
"file:./assets/fonts/plus-jakarta-sans_normal_600.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Plus Jakarta Sans",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "700",
|
||||
"src": [
|
||||
"file:./assets/fonts/plus-jakarta-sans_normal_700.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Plus Jakarta Sans",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "800",
|
||||
"src": [
|
||||
"file:./assets/fonts/plus-jakarta-sans_normal_800.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Plus Jakarta Sans",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "200",
|
||||
"src": [
|
||||
"file:./assets/fonts/plus-jakarta-sans_italic_200.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Plus Jakarta Sans",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "300",
|
||||
"src": [
|
||||
"file:./assets/fonts/plus-jakarta-sans_italic_300.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Plus Jakarta Sans",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "400",
|
||||
"src": [
|
||||
"file:./assets/fonts/plus-jakarta-sans_italic_400.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Plus Jakarta Sans",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "500",
|
||||
"src": [
|
||||
"file:./assets/fonts/plus-jakarta-sans_italic_500.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Plus Jakarta Sans",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "600",
|
||||
"src": [
|
||||
"file:./assets/fonts/plus-jakarta-sans_italic_600.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Plus Jakarta Sans",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "700",
|
||||
"src": [
|
||||
"file:./assets/fonts/plus-jakarta-sans_italic_700.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Plus Jakarta Sans",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "800",
|
||||
"src": [
|
||||
"file:./assets/fonts/plus-jakarta-sans_italic_800.ttf"
|
||||
]
|
||||
}
|
||||
],
|
||||
"fontFamily": "Plus Jakarta Sans",
|
||||
"slug": "plus-jakarta-sans"
|
||||
},
|
||||
{
|
||||
"fontFace": [
|
||||
{
|
||||
"fontFamily": "Newsreader",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "200",
|
||||
"src": [
|
||||
"file:./assets/fonts/newsreader_normal_200.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Newsreader",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "300",
|
||||
"src": [
|
||||
"file:./assets/fonts/newsreader_normal_300.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Newsreader",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "400",
|
||||
"src": [
|
||||
"file:./assets/fonts/newsreader_normal_400.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Newsreader",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "500",
|
||||
"src": [
|
||||
"file:./assets/fonts/newsreader_normal_500.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Newsreader",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "600",
|
||||
"src": [
|
||||
"file:./assets/fonts/newsreader_normal_600.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Newsreader",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "700",
|
||||
"src": [
|
||||
"file:./assets/fonts/newsreader_normal_700.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Newsreader",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "800",
|
||||
"src": [
|
||||
"file:./assets/fonts/newsreader_normal_800.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Newsreader",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "200",
|
||||
"src": [
|
||||
"file:./assets/fonts/newsreader_italic_200.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Newsreader",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "300",
|
||||
"src": [
|
||||
"file:./assets/fonts/newsreader_italic_300.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Newsreader",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "400",
|
||||
"src": [
|
||||
"file:./assets/fonts/newsreader_italic_400.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Newsreader",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "500",
|
||||
"src": [
|
||||
"file:./assets/fonts/newsreader_italic_500.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Newsreader",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "600",
|
||||
"src": [
|
||||
"file:./assets/fonts/newsreader_italic_600.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Newsreader",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "700",
|
||||
"src": [
|
||||
"file:./assets/fonts/newsreader_italic_700.ttf"
|
||||
]
|
||||
},
|
||||
{
|
||||
"fontFamily": "Newsreader",
|
||||
"fontStyle": "italic",
|
||||
"fontWeight": "800",
|
||||
"src": [
|
||||
"file:./assets/fonts/newsreader_italic_800.ttf"
|
||||
]
|
||||
}
|
||||
],
|
||||
"fontFamily": "Newsreader",
|
||||
"slug": "newsreader"
|
||||
}
|
||||
],
|
||||
"fontSizes": [
|
||||
{
|
||||
"name": "Small",
|
||||
"size": ".875rem",
|
||||
"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"
|
||||
}
|
||||
]
|
||||
},
|
||||
"useRootPaddingAwareAlignments": true
|
||||
},
|
||||
"styles": {
|
||||
"blocks": {
|
||||
"core/button": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--plus-jakarta-sans)",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "600"
|
||||
}
|
||||
},
|
||||
"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": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--plus-jakarta-sans)",
|
||||
"fontSize": "var(--wp--preset--font-size--small)"
|
||||
}
|
||||
},
|
||||
"core/comment-date": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--plus-jakarta-sans)",
|
||||
"fontSize": "var(--wp--preset--font-size--small)"
|
||||
}
|
||||
},
|
||||
"core/comment-edit-link": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--plus-jakarta-sans)",
|
||||
"fontSize": "var(--wp--preset--font-size--small)"
|
||||
}
|
||||
},
|
||||
"core/comment-reply-link": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--plus-jakarta-sans)",
|
||||
"fontSize": "var(--wp--preset--font-size--small)"
|
||||
}
|
||||
},
|
||||
"core/gallery": {
|
||||
"spacing": {
|
||||
"margin": {
|
||||
"bottom": "var(--wp--preset--spacing--50)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/group": {
|
||||
"dimensions": {
|
||||
"minHeight": "1vh"
|
||||
}
|
||||
},
|
||||
"core/heading": {
|
||||
"typography": {
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "500"
|
||||
}
|
||||
},
|
||||
"core/list": {
|
||||
"spacing": {
|
||||
"padding": {
|
||||
"left": "var(--wp--preset--spacing--70)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"core/navigation": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--medium)"
|
||||
}
|
||||
},
|
||||
"core/paragraph": {
|
||||
"typography": {
|
||||
"lineHeight": "1.5"
|
||||
}
|
||||
},
|
||||
"core/post-author-name": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"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": {
|
||||
"fontFamily": "var(--wp--preset--font-family--plus-jakarta-sans)",
|
||||
"fontSize": "var(--wp--preset--font-size--small)"
|
||||
}
|
||||
},
|
||||
"core/post-terms": {
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--primary)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--plus-jakarta-sans)",
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"fontStyle": "normal",
|
||||
"fontWeight": "600",
|
||||
"letterSpacing": "1px",
|
||||
"textTransform": "uppercase"
|
||||
}
|
||||
},
|
||||
"core/post-title": {
|
||||
"elements": {
|
||||
"link": {
|
||||
":hover": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--foreground)"
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "underline"
|
||||
}
|
||||
},
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--primary)"
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--x-large)"
|
||||
},
|
||||
"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": {
|
||||
"elements": {
|
||||
"link": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--secondary)"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"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 2px 0"
|
||||
},
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--tertiary)"
|
||||
}
|
||||
},
|
||||
"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"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--x-large)",
|
||||
"fontWeight": "700"
|
||||
}
|
||||
}
|
||||
},
|
||||
"color": {
|
||||
"background": "var(--wp--preset--color--background)",
|
||||
"text": "var(--wp--preset--color--foreground)"
|
||||
},
|
||||
"css": "a:any-link {\n cursor: auto;\n text-decoration-thickness: .02em !important;\n text-underline-offset: .20em;\n}",
|
||||
"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)"
|
||||
},
|
||||
"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--background)"
|
||||
}
|
||||
},
|
||||
"border": {
|
||||
"radius": "0"
|
||||
},
|
||||
"color": {
|
||||
"background": "var(--wp--preset--color--primary)",
|
||||
"text": "var(--wp--preset--color--background)"
|
||||
},
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--plus-jakarta-sans)",
|
||||
"lineHeight": "1.35"
|
||||
}
|
||||
},
|
||||
"caption": {
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--plus-jakarta-sans)"
|
||||
}
|
||||
},
|
||||
"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)"
|
||||
}
|
||||
},
|
||||
"h6": {
|
||||
"typography": {
|
||||
"fontSize": "var(--wp--preset--font-size--small)",
|
||||
"fontWeight": "600"
|
||||
}
|
||||
},
|
||||
"heading": {
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--secondary)"
|
||||
},
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--plus-jakarta-sans)",
|
||||
"fontWeight": "600",
|
||||
"lineHeight": "1.2"
|
||||
}
|
||||
},
|
||||
"link": {
|
||||
":hover": {
|
||||
"typography": {
|
||||
"textDecoration": "none"
|
||||
}
|
||||
},
|
||||
"color": {
|
||||
"text": "var(--wp--preset--color--secondary)"
|
||||
}
|
||||
}
|
||||
},
|
||||
"spacing": {
|
||||
"blockGap": "1.5rem",
|
||||
"padding": {
|
||||
"bottom": "0",
|
||||
"left": "0",
|
||||
"right": "0",
|
||||
"top": "0"
|
||||
}
|
||||
},
|
||||
"typography": {
|
||||
"fontFamily": "var(--wp--preset--font-family--newsreader)",
|
||||
"fontSize": "var(--wp--preset--font-size--medium)",
|
||||
"lineHeight": "1.5"
|
||||
}
|
||||
},
|
||||
"templateParts": [
|
||||
{
|
||||
"area": "header",
|
||||
"name": "header"
|
||||
},
|
||||
{
|
||||
"area": "footer",
|
||||
"name": "footer"
|
||||
}
|
||||
],
|
||||
"version": 2,
|
||||
"$schema": "https://schemas.wp.org/trunk/theme.json"
|
||||
}
|
Loading…
Reference in a new issue