浏览代码

Add Seedlet (Blocks) Theme

Kjell Reigstad 5 年之前
父节点
当前提交
dd9708f2b4

二进制
seedlet-blocks/Screenshot.png


+ 3 - 0
seedlet-blocks/block-template-parts/footer.html

@@ -0,0 +1,3 @@
+<!-- wp:paragraph {"align":"center","fontSize":"small"} -->
+<p class="has-text-align-center has-small-font-size">Proudly powered by <a href="https://wordpress.org">WordPress</a></p>
+<!-- /wp:paragraph -->

+ 13 - 0
seedlet-blocks/block-template-parts/header.html

@@ -0,0 +1,13 @@
+<!-- wp:image {"align":"center","width":128,"height":128,"sizeSlug":"large","className":""} -->
+<div class="wp-block-image"><figure class="aligncenter size-large is-resized"><img src="https://cldup.com/B9dfntUFJE.png" alt="" width="128" height="128"/></figure></div>
+<!-- /wp:image -->
+
+<!-- wp:site-title /-->
+
+<!-- wp:paragraph {"align":"center","fontSize":"small"} -->
+<p class="has-text-align-center has-small-font-size">is a curious botanist</p>
+<!-- /wp:paragraph -->
+
+<!-- wp:navigation {"itemsJustification":"center"} -->
+<!-- wp:navigation-link {"label":"Home","url":"#"} /-->
+<!-- /wp:navigation -->

+ 11 - 0
seedlet-blocks/block-templates/home.html

@@ -0,0 +1,11 @@
+<!-- wp:group {"align":"full","className":"site-header","tagName":"header"} -->
+<div class="wp-block-group alignfull site-header"><div class="wp-block-group__inner-container"><!-- wp:template-part {"slug":"header","theme":"seedlet-blocks"} /--></div></div>
+<!-- /wp:group -->
+
+<!-- wp:group {"align":"full","className":"site-content","tagName":"main"} -->
+<div class="wp-block-group alignfull site-content"><div class="wp-block-group__inner-container"><!-- wp:post-content /--></div></div>
+<!-- /wp:group -->
+
+<!-- wp:group {"align":"full","className":"site-footer","tagName":"footer"} -->
+<div class="wp-block-group alignfull site-footer"><div class="wp-block-group__inner-container"><!-- wp:template-part {"slug":"footer","theme":"seedlet-blocks"} /--></div></div>
+<!-- /wp:group -->

+ 11 - 0
seedlet-blocks/block-templates/index.html

@@ -0,0 +1,11 @@
+<!-- wp:group {"align":"full","className":"site-header","tagName":"header"} -->
+<div class="wp-block-group alignfull site-header"><div class="wp-block-group__inner-container"><!-- wp:template-part {"slug":"header","theme":"seedlet-blocks"} /--></div></div>
+<!-- /wp:group -->
+
+<!-- wp:group {"align":"full","className":"site-content","tagName":"main"} -->
+<div class="wp-block-group alignfull site-content"><div class="wp-block-group__inner-container"><!-- wp:post-title /--><!-- wp:latest-posts {"postsToShow":100,"displayPostContent":true,"displayPostDate":true} /--></div></div>
+<!-- /wp:group -->
+
+<!-- wp:group {"align":"full","className":"site-footer","tagName":"footer"} -->
+<div class="wp-block-group alignfull site-footer"><div class="wp-block-group__inner-container"><!-- wp:template-part {"slug":"footer","theme":"seedlet-blocks"} /--></div></div>
+<!-- /wp:group -->

+ 13 - 0
seedlet-blocks/block-templates/singular.html

@@ -0,0 +1,13 @@
+<!-- wp:group {"align":"full","className":"site-header","tagName":"header"} -->
+<div class="wp-block-group alignfull site-header"><div class="wp-block-group__inner-container"><!-- wp:template-part {"slug":"header","theme":"seedlet-blocks"} /--></div></div>
+<!-- /wp:group -->
+
+<!-- wp:group {"align":"full","className":"site-content","tagName":"main"} -->
+<div class="wp-block-group alignfull site-content"><div class="wp-block-group__inner-container">
+<!-- wp:post-title /-->
+<!-- wp:post-content /--></div></div>
+<!-- /wp:group -->
+
+<!-- wp:group {"align":"full","className":"site-footer","tagName":"footer"} -->
+<div class="wp-block-group alignfull site-footer"><div class="wp-block-group__inner-container"><!-- wp:template-part {"slug":"footer","theme":"seedlet-blocks"} /--></div></div>
+<!-- /wp:group -->

+ 18 - 0
seedlet-blocks/functions.php

@@ -0,0 +1,18 @@
+<?php
+/**
+ * Seedlet Blocks functions and definitions
+ *
+ * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
+ *
+ * @package WordPress
+ * @subpackage seedlet_blocks
+ * @since 1.0.0
+ */
+
+/**
+ * Enqueue scripts and styles.
+ */
+function seedlet_blocks_enqueue() {
+	wp_enqueue_style( 'seedlet-blocks-styles', get_stylesheet_uri() );
+}
+add_action( 'wp_enqueue_scripts', 'seedlet_blocks_enqueue' );

+ 40 - 0
seedlet-blocks/readme.txt

@@ -0,0 +1,40 @@
+=== Seedlet Blocks ===
+Contributors: Automattic
+Requires at least: 5.0
+Tested up to: 5.4.1
+Requires PHP: 7.3
+License: GPLv2 or later
+License URI: http://www.gnu.org/licenses/gpl-2.0.html
+
+A simple, text-driven, single-column block-based theme. 
+
+== Description ==
+
+Seedlet is a simple, text-driven, single-column block-based theme. 
+
+== Changelog ==
+
+= 1.0 =
+* Initial release 
+
+== Copyright ==
+
+Seedlet Blocks WordPress Theme, (C) 2020 Automattic, Inc.
+Seedlet 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.
+
+Images from Smithsonian Institution
+License: CC0
+Source: https://www.si.edu/object/hymenoxys-odorata-dc:nmnhbotany_13045011
+		https://www.si.edu/object/coccocypselum-guianense-aubl-k-schum:nmnhbotany_10752403
+		https://www.si.edu/object/coccocypselum-guianense-aubl-k-schum:nmnhbotany_10672835
+Included in theme screenshot.

+ 62 - 0
seedlet-blocks/style.css

@@ -0,0 +1,62 @@
+/*
+Theme Name: Seedlet (Blocks)
+Theme URI: https://github.com/Automattic/themes-workspace/seedlet-blocks
+Author: Automattic
+Author URI: https://automattic.com/
+Description: A simple, text-driven, single-column block-based theme.
+Requires at least: 4.9.6
+Tested up to: 5.4.1
+Requires PHP: 7.3
+Version: 1.0
+License: GNU General Public License v2 or later
+License URI: LICENSE
+Template: seedlet
+Text Domain: seedlet-blocks
+Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready
+
+Seedlet Blocks WordPress Theme, (C) 2020 Automattic, Inc.
+Seedlet Blocks 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.
+*/
+
+/* Center the site title. */
+.site-header h1 {
+	text-align: center;
+}
+
+/* Set up alignments */
+.wp-block-group .wp-block-group__inner-container > * {
+	max-width: var(--responsive--aligndefault-width);
+	margin-left: auto;
+	margin-right: auto;
+}
+
+.wp-block-group .wp-block-group__inner-container > .alignwide {
+	max-width: var(--responsive--alignwide-width);
+	margin-left: auto;
+	margin-right: auto;
+}
+
+.wp-block-group .wp-block-group__inner-container > .alignfull {
+	max-width: calc(100% + (2 * var(--global--spacing-horizontal)));
+	width: calc(100% + (2 * var(--global--spacing-horizontal)));
+	margin-left: calc(-1 * var(--global--spacing-horizontal));
+	margin-right: auto;
+}
+
+/* Make sure full-width items in entry content show up as full-width. */
+.wp-block-group.site-content .wp-block-group__inner-container .entry-content {
+	max-width: calc(100% + (2 * var(--global--spacing-horizontal)));
+	width: calc(100% + (2 * var(--global--spacing-horizontal)));
+	margin-left: calc(-1 * var(--global--spacing-horizontal));
+	margin-right: auto;
+}