-
Notifications
You must be signed in to change notification settings - Fork 361
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create Pendant Base Theme #5694
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
<?php | ||
/** | ||
* Pendant functions and definitions | ||
* | ||
* @link https://developer.wordpress.org/themes/basics/theme-functions/ | ||
* | ||
* @package Pendant | ||
* @since Pendant 1.0 | ||
*/ | ||
|
||
|
||
if ( ! function_exists( 'pendant_support' ) ) : | ||
|
||
/** | ||
* Sets up theme defaults and registers support for various WordPress features. | ||
* | ||
* @since Block Canvas 1.0 | ||
* | ||
* @return void | ||
*/ | ||
function pendant_support() { | ||
|
||
// Enqueue editor styles. | ||
add_editor_style( 'style.css' ); | ||
|
||
} | ||
|
||
endif; | ||
|
||
add_action( 'after_setup_theme', 'pendant_support' ); | ||
|
||
if ( ! function_exists( 'pendant_styles' ) ) : | ||
|
||
/** | ||
* Enqueue styles. | ||
* | ||
* @since Block Canvas 1.0 | ||
* | ||
* @return void | ||
*/ | ||
function pendant_styles() { | ||
|
||
// Register theme stylesheet. | ||
wp_register_style( | ||
'pendant-style', | ||
get_template_directory_uri() . '/style.css', | ||
array(), | ||
wp_get_theme()->get( 'Version' ) | ||
); | ||
|
||
// Enqueue theme stylesheet. | ||
wp_enqueue_style( 'pendant-style' ); | ||
|
||
} | ||
|
||
endif; | ||
|
||
add_action( 'wp_enqueue_scripts', 'pendant_styles' ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<?php | ||
# This page intentionally left blank |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!-- wp:group {"layout":{"inherit":true}} --> | ||
<div class="wp-block-group"> | ||
<!-- wp:group {"style":{"spacing":{"padding":{"top":"80px","bottom":"30px"}}}} --> | ||
<div class="wp-block-group" style="padding-top:80px;padding-bottom:30px"> | ||
<!-- wp:paragraph {"align":"center"} --> | ||
<p class="has-text-align-center">Proudly Powered by <a href="https://wordpress.org" rel="nofollow">WordPress</a></p> | ||
<!-- /wp:paragraph --> | ||
</div> | ||
<!-- /wp:group --> | ||
</div> | ||
<!-- /wp:group --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<!-- wp:group {"className":"gapless-group","layout":{"inherit":"true"}} --> | ||
<div class="wp-block-group gapless-group"> | ||
<!-- wp:group {"align":"full","className":"site-header","layout":{"type":"flex","justifyContent":"space-between"},"style":{"spacing":{"padding":{"bottom":"var(--wp--custom--gap--vertical)","top":"var(--wp--custom--gap--vertical)"}}}} --> | ||
<div class="wp-block-group site-header alignfull" style="padding-bottom:var(--wp--custom--gap--vertical);padding-top:var(--wp--custom--gap--vertical)"> | ||
|
||
<!-- wp:group {"className":"site-brand","layout":{"type":"flex"}} --> | ||
<div class="wp-block-group site-brand"> | ||
<!-- wp:site-logo {"width":64} /--> | ||
|
||
<!-- wp:group --> | ||
<div class="wp-block-group"> | ||
<!-- wp:site-title /--> | ||
<!-- wp:site-tagline /--> | ||
</div> | ||
<!-- /wp:group --> | ||
</div> | ||
<!-- /wp:group --> | ||
|
||
<!-- wp:navigation {"__unstableLocation":"primary","__unstableSocialLinks":"social","layout":{"type":"flex","setCascadingProperties":true,"justifyContent":"right","orientation":"horizontal"},"style":{"spacing":{"margin":{"top":"0"}}}} /--> | ||
|
||
</div> | ||
<!-- /wp:group --> | ||
|
||
</div> | ||
<!-- /wp:group --> | ||
|
||
<!-- wp:spacer {"height":50} --> | ||
<div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div> | ||
<!-- /wp:spacer --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<!-- wp:group {"layout":{"type":"flex"}} --> | ||
<div class="wp-block-group"> | ||
<!-- wp:post-author {"showAvatar":false,"showBio":false,"style":{"typography":{"fontSize":"var(--wp--custom--font-sizes--x-small)"}}} /--> | ||
<!-- wp:post-date {"isLink":true,"style":{"typography":{"fontSize":"var(--wp--custom--font-sizes--x-small)"}}} /--> | ||
<!-- wp:post-terms {"term":"category","style":{"typography":{"fontSize":"var(--wp--custom--font-sizes--x-small)"}}} /--> | ||
<!-- wp:post-terms {"term": "post_tag","style":{"typography":{"fontSize":"var(--wp--custom--font-sizes--x-small)"}}} /--> | ||
</div> | ||
<!-- /wp:group --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
/** | ||
* Pattern Name: A 404 page | ||
* Inserter: no | ||
*/ | ||
|
||
?> | ||
|
||
<!-- wp:heading {"textAlign":"center","level":1,"fontSize":"medium"} --> | ||
<h1 class="has-text-align-center has-medium-font-size" id="oops-that-page-can-t-be-found"><?php echo esc_html__( 'Oops! That page can’t be found.', 'pendant' ); ?></h1> | ||
<!-- /wp:heading --> | ||
|
||
<!-- wp:paragraph --> | ||
<p><?php echo esc_html__( 'It looks like nothing was found at this location. Maybe try a search?', 'pendant' ); ?></p> | ||
<!-- /wp:paragraph --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
=== Pendant === | ||
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 == | ||
|
||
An elegant product-focused theme | ||
|
||
== Changelog == | ||
|
||
= 0.0.1 = | ||
* Initial release | ||
|
||
== Copyright == | ||
|
||
Pendant WordPress Theme, (C) 2022 Automattic | ||
Pendant 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. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
/* | ||
Theme Name: Pendant | ||
Theme URI: https://github.com/Automattic/themes/tree/trunk/pendant | ||
Author: Automattic | ||
Author URI: https://automattic.com | ||
Description: An elegant product-focused theme | ||
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: https://raw.githubusercontent.com/Automattic/themes/trunk/LICENSE | ||
Template: | ||
Text Domain: pendant | ||
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, rtl-language-support, theme-options, threaded-comments, translation-ready, wide-blocks | ||
*//* | ||
* Font smoothing | ||
*/ | ||
|
||
body { | ||
-moz-osx-font-smoothing: grayscale; | ||
-webkit-font-smoothing: antialiased; | ||
} | ||
|
||
/* | ||
* Button hover styles. | ||
* Necessary until the following issue is resolved in Gutenberg: | ||
* https://github.com/WordPress/gutenberg/issues/27075 | ||
*/ | ||
|
||
.wp-block-search__button:hover, | ||
.wp-block-file .wp-block-file__button:hover, | ||
.wp-block-button__link:hover { | ||
background-color: var(--wp--preset--color--primary); | ||
} | ||
|
||
/* | ||
* Search and File Block button styles. | ||
* Necessary until the following issues are resolved in Gutenberg: | ||
* https://github.com/WordPress/gutenberg/issues/36444 | ||
* https://github.com/WordPress/gutenberg/issues/27760 | ||
*/ | ||
|
||
.wp-block-search__button, | ||
.wp-block-file .wp-block-file__button { | ||
background-color: var(--wp--preset--color--foreground); | ||
border-radius: 0; | ||
border: none; | ||
color: var(--wp--preset--color--background); | ||
font-size: var(--wp--preset--typography--font-size--normal); | ||
padding: calc(0.667em + 2px) calc(1.333em + 2px); | ||
} | ||
|
||
/* | ||
* Alignment styles, borrowed from Twenty Twenty-Two. | ||
* These rules are temporary, and should not be relied on or | ||
* modified too heavily by themes or plugins that build on | ||
* Twenty Twenty-Two. These are meant to be a precursor to | ||
* a global solution provided by the Block Editor. | ||
* | ||
* Relevant issues: | ||
* https://github.com/WordPress/gutenberg/issues/35607 | ||
* https://github.com/WordPress/gutenberg/issues/35884 | ||
*/ | ||
|
||
.wp-site-blocks, | ||
body > .is-root-container, | ||
.edit-post-visual-editor__post-title-wrapper, | ||
.wp-block-group.alignfull, | ||
.wp-block-group.has-background, | ||
.wp-block-columns.alignfull.has-background, | ||
.wp-block-cover.alignfull, | ||
.is-root-container .wp-block[data-align='full'] > .wp-block-group, | ||
.is-root-container .wp-block[data-align='full'] > .wp-block-columns.has-background, | ||
.is-root-container .wp-block[data-align='full'] > .wp-block-cover { | ||
padding-left: var(--wp--custom--gap--horizontal); | ||
padding-right: var(--wp--custom--gap--horizontal); | ||
} | ||
|
||
.wp-site-blocks .alignfull, | ||
.wp-site-blocks > .wp-block-group.has-background, | ||
.wp-site-blocks > .wp-block-cover, | ||
.wp-site-blocks > .wp-block-template-part > .wp-block-group.has-background, | ||
.wp-site-blocks > .wp-block-template-part > .wp-block-cover, | ||
body > .is-root-container > .wp-block-cover, | ||
body > .is-root-container > .wp-block-template-part > .wp-block-group.has-background, | ||
body > .is-root-container > .wp-block-template-part > .wp-block-cover, | ||
.is-root-container .wp-block[data-align='full'] { | ||
margin-left: calc(-1 * var(--wp--custom--gap--horizontal)) !important; | ||
margin-right: calc(-1 * var(--wp--custom--gap--horizontal)) !important; | ||
max-width: unset; | ||
width: unset; | ||
} | ||
|
||
/* Blocks inside columns don't have negative margins. */ | ||
.wp-site-blocks .wp-block-columns .wp-block-column .alignfull, | ||
.is-root-container .wp-block-columns .wp-block-column .wp-block[data-align="full"], | ||
/* We also want to avoid stacking negative margins. */ | ||
.wp-site-blocks .alignfull:not(.wp-block-group) .alignfull, | ||
.is-root-container .wp-block[data-align="full"] > *:not(.wp-block-group) .wp-block[data-align="full"] { | ||
margin-left: auto !important; | ||
margin-right: auto !important; | ||
width: inherit; | ||
} | ||
|
||
/* | ||
* Responsive menu container padding. | ||
* This ensures the responsive container inherits the same | ||
* spacing defined above. This behavior may be built into | ||
* the Block Editor in the future. | ||
*/ | ||
|
||
.wp-block-navigation__responsive-container.is-menu-open { | ||
padding-top: var(--wp--custom--gap--horizontal); | ||
padding-bottom: var(--wp--custom--gap--vertical); | ||
padding-right: var(--wp--custom--gap--horizontal); | ||
padding-left: var(--wp--custom--gap--horizontal); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<!-- wp:template-part {"slug":"header","tagName":"header"} /--> | ||
|
||
<!-- wp:group {"tagName":"main","layout":{"inherit":true}} --> | ||
<main class="wp-block-group"> | ||
|
||
<!-- wp:pattern {"slug":"pendant/404"} /--> | ||
<!-- wp:search {"label":""} /--> | ||
|
||
</main> | ||
<!-- /wp:group --> | ||
|
||
<!-- wp:template-part {"slug":"footer","tagName":"footer","className":"site-footer-container"} /--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<!-- wp:template-part {"slug":"header","tagName":"header"} /--> | ||
|
||
<!-- wp:query {"tagName":"main","layout":{"inherit":true}} --> | ||
<main class="wp-block-query"> | ||
<!-- wp:query-title {"type":"archive","style":{"spacing":{"margin":{"bottom":"100px"}}}} /--> | ||
<!-- wp:post-template --> | ||
<!-- wp:group --> | ||
<div class="wp-block-group"> | ||
<!-- wp:post-title {"isLink":true} /--> | ||
<!-- wp:post-featured-image {"isLink":true} /--> | ||
<!-- wp:post-excerpt /--> | ||
<!-- wp:template-part {"slug":"post-meta","layout":{"inherit":true}} /--> | ||
<!-- wp:spacer {"height":40} --> | ||
<div style="height:40px" aria-hidden="true" class="wp-block-spacer"></div> | ||
<!-- /wp:spacer --> | ||
</div> | ||
<!-- /wp:group --> | ||
<!-- /wp:post-template --> | ||
<!-- wp:group {"layout":{"inherit":true}} --> | ||
<div class="wp-block-group"> | ||
<!-- wp:query-pagination --> | ||
<!-- wp:query-pagination-previous /--> | ||
|
||
<!-- wp:query-pagination-numbers /--> | ||
|
||
<!-- wp:query-pagination-next /--> | ||
<!-- /wp:query-pagination --> | ||
</div> | ||
<!-- /wp:group --> | ||
</main> | ||
<!-- /wp:query --> | ||
|
||
<!-- wp:template-part {"slug":"footer","tagName":"footer","className":"site-footer-container"} /--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<!-- wp:post-content {"layout":{"inherit":true}} /--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<!-- wp:post-content {"layout":{"inherit":true}} /--> | ||
|
||
<!-- wp:template-part {"slug":"footer","tagName":"footer","className":"site-footer-container"} /--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<!-- wp:template-part {"slug":"header","tagName":"header"} /--> | ||
|
||
<!-- wp:group {"tagName":"main"} --> | ||
<main class="wp-block-group"> | ||
|
||
<!-- wp:post-content {"layout":{"inherit":true}} /--> | ||
</main> | ||
<!-- /wp:group --> | ||
|
||
<!-- wp:template-part {"slug":"footer","tagName":"footer","className":"site-footer-container"} /--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<!-- wp:template-part {"slug":"header","tagName":"header"} /--> | ||
|
||
<!-- wp:query {"tagName":"main","layout":{"inherit":true}} --> | ||
<main class="wp-block-query"> | ||
<!-- wp:post-template --> | ||
<!-- wp:group --> | ||
<div class="wp-block-group"> | ||
<!-- wp:post-title {"isLink":true} /--> | ||
<!-- wp:post-featured-image {"isLink":true} /--> | ||
<!-- wp:post-excerpt /--> | ||
<!-- wp:template-part {"slug":"post-meta"} /--> | ||
<!-- wp:spacer {"height":40} --> | ||
<div style="height:40px" aria-hidden="true" class="wp-block-spacer"></div> | ||
<!-- /wp:spacer --> | ||
</div> | ||
<!-- /wp:group --> | ||
<!-- /wp:post-template --> | ||
<!-- wp:group {"layout":{"inherit":true}} --> | ||
<div class="wp-block-group"> | ||
<!-- wp:query-pagination --> | ||
<!-- wp:query-pagination-previous /--> | ||
|
||
<!-- wp:query-pagination-numbers /--> | ||
|
||
<!-- wp:query-pagination-next /--> | ||
<!-- /wp:query-pagination --> | ||
</div> | ||
<!-- /wp:group --> | ||
</main> | ||
<!-- /wp:query --> | ||
|
||
<!-- wp:template-part {"slug":"footer","tagName":"footer","className":"site-footer-container"} /--> | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't register this so an empty pattern shows up in the site editor. I think it's fine to do this in a follow-up, unless you wanted to do it now...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We're still waiting for this to land at which point this should start working. It doesn't work now but I hope it will before we start in on patterns (and the 404 page). This was copied from @MaggieCabrera 's new boilerplate theme.
My 'druthers is to bring it in now.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The pattern PR in GB is going to be merged soon, and it most likely will make it to dotcom before the theme is ready to launch, but we can of course make a patch in the meantime.