This repository was archived by the owner on Feb 17, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 366
Try: Blockbase standalone theme #5660
Merged
Merged
Changes from 12 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
67c0283
first commit with initial files
MaggieCabrera 77dcbee
templates
MaggieCabrera c45d134
styles
MaggieCabrera efebc43
template parts
MaggieCabrera 3bf222a
Removed errant metadata
pbking 1036011
Added create tool
pbking 1fa57ff
Removed a create script. (It shouldn't be here...)
pbking 4ca1c16
404 block pattern
MaggieCabrera 9ee1174
remove fontSlug
MaggieCabrera 6e9fbcb
removed block styles support
MaggieCabrera 626e858
change slug of block pattern
MaggieCabrera bc1ba92
added namespace to pattern
MaggieCabrera 2d1acde
ignore this theme when pushing to the sandbox
MaggieCabrera 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 hidden or 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 | ||
| /** | ||
| * Block Canvas functions and definitions | ||
| * | ||
| * @link https://developer.wordpress.org/themes/basics/theme-functions/ | ||
| * | ||
| * @package Block Canvas | ||
| * @since Block Canvas 1.0 | ||
| */ | ||
|
|
||
|
|
||
| if ( ! function_exists( 'block_canvas_support' ) ) : | ||
|
|
||
| /** | ||
| * Sets up theme defaults and registers support for various WordPress features. | ||
| * | ||
| * @since Block Canvas 1.0 | ||
| * | ||
| * @return void | ||
| */ | ||
| function block_canvas_support() { | ||
|
|
||
| // Enqueue editor styles. | ||
| add_editor_style( 'style.css' ); | ||
|
|
||
| } | ||
|
|
||
| endif; | ||
|
|
||
| add_action( 'after_setup_theme', 'block_canvas_support' ); | ||
|
|
||
| if ( ! function_exists( 'block_canvas_styles' ) ) : | ||
|
|
||
| /** | ||
| * Enqueue styles. | ||
| * | ||
| * @since Block Canvas 1.0 | ||
| * | ||
| * @return void | ||
| */ | ||
| function block_canvas_styles() { | ||
|
|
||
| // Register theme stylesheet. | ||
| wp_register_style( | ||
| 'block_canvas-style', | ||
| get_template_directory_uri() . '/style.css', | ||
| array(), | ||
| wp_get_theme()->get( 'Version' ) | ||
| ); | ||
|
|
||
| // Enqueue theme stylesheet. | ||
| wp_enqueue_style( 'block_canvas-style' ); | ||
|
|
||
| } | ||
|
|
||
| endif; | ||
|
|
||
| add_action( 'wp_enqueue_scripts', 'block_canvas_styles' ); |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,16 @@ | ||
| <?php | ||
| /** | ||
| * Pattern Name: A 404 page | ||
| * Namespace: block-canvas | ||
| * 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.', 'block-canvas' ); ?></h1> | ||
| <!-- /wp:heading --> | ||
|
|
||
| <!-- wp:paragraph --> | ||
| <p><?php echo esc_html__( 'It looks like nothing was found at this location. Maybe try a search?', 'block-canvas' ); ?></p> | ||
| <!-- /wp:paragraph --> |
This file contains hidden or 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,133 @@ | ||
| /* | ||
| Theme Name: Block Canvas | ||
| Theme URI: https://github.com/Automattic/themes/tree/trunk/block-canvas | ||
| Author: Automattic | ||
| Author URI: https://automattic.com/ | ||
| Description: Block canvas is a simple theme that supports full-site editing. It comes with a set of minimal templates and design settings that can be manipulated through Global Styles. Use it to build something beautiful. | ||
| Requires at least: 5.7 | ||
| 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 | ||
| Text Domain: block-canvas | ||
| 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, auto-loading-homepage | ||
|
|
||
| Block canvas WordPress Theme, (C) 2021 Automattic, Inc. | ||
| Block canvas 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. | ||
|
|
||
| */ | ||
|
|
||
| /* | ||
| * 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 hidden or 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":"block-canvas/404"} /--> | ||
| <!-- wp:search {"label":""} /--> | ||
|
|
||
| </main> | ||
| <!-- /wp:group --> | ||
|
|
||
| <!-- wp:template-part {"slug":"footer","tagName":"footer","className":"site-footer-container"} /--> |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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"} /--> | ||
|
|
This file contains hidden or 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,27 @@ | ||
|
|
||
| <!-- wp:template-part {"slug":"header","tagName":"header"} /--> | ||
|
|
||
| <!-- wp:group {"layout":{"inherit":true}} --> | ||
| <div class="wp-block-group"> | ||
| <!-- wp:post-title /--> | ||
| </div> | ||
| <!-- /wp:group --> | ||
|
|
||
| <!-- wp:group {"tagName":"main"} --> | ||
| <main class="wp-block-group"> | ||
| <!-- wp:post-featured-image {"align":"full"} /--> | ||
|
|
||
| <!-- wp:post-content {"layout":{"inherit":true}} /--> | ||
| </main> | ||
| <!-- /wp:group --> | ||
|
|
||
| <!-- wp:group {"layout":{"inherit":true}} --> | ||
| <div class="wp-block-group"> | ||
| <!-- wp:spacer {"height":60} --> | ||
| <div style="height:60px" aria-hidden="true" class="wp-block-spacer"></div> | ||
| <!-- /wp:spacer --> | ||
| <!-- wp:post-comments /--> | ||
| </div> | ||
| <!-- /wp:group --> | ||
|
|
||
| <!-- 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.
Uh oh!
There was an error while loading. Please reload this page.