Ben Dwyer 025cf697bd remove word break před 4 roky
..
assets 025cf697bd remove word break před 4 roky
classes 6b8c09b2b2 Rebase trunk. před 4 roky
inc 0f3883049b Removing Resources excluded via .gitignore před 4 roky
languages c69defa26b Returning .pot files to git version control před 4 roky
template-parts 4c950b6afb Merge pull request #2494 from Automattic/fix/issue-2413 před 4 roky
404.php 63f020a88f Seedlet: fix landmark roles (#2395) před 4 roky
LICENSE 66fe602d0c Adding 1.0 seedlet theme. před 5 roky
README.md 47537bc697 Add an acknowledgement for the CSS Vars ponyfill před 4 roky
archive.php fabefd7058 Refactor customizer class and add ability to toggle excerpts. před 4 roky
comments.php 25692bd19a Replace with esc translation. (#2430) před 4 roky
footer.php 63f020a88f Seedlet: fix landmark roles (#2395) před 4 roky
functions.php e67ff5c9df implement the jetpack author bio před 4 roky
header.php 405ea1ed6e Spearhead: Add support for site logo před 4 roky
image.php 63f020a88f Seedlet: fix landmark roles (#2395) před 4 roky
index.php fabefd7058 Refactor customizer class and add ability to toggle excerpts. před 4 roky
package-lock.json eb91c7ffea Version Bump Seedlet for syncing of missing footer-widget.php changes před 4 roky
package.json eb91c7ffea Version Bump Seedlet for syncing of missing footer-widget.php changes před 4 roky
page.php 63f020a88f Seedlet: fix landmark roles (#2395) před 4 roky
postcss.config.js 283b23fd16 Seedlet: Fix layout grid margins (#2219) před 5 roky
readme.txt 6c6994ea29 Bump version to 1.1.2 před 4 roky
screenshot.png 71dbe74c81 Seedlet: Optimize the screenshot před 5 roky
search.php 6698c7ae18 Use correct template tags for navigation + pagination. před 4 roky
single.php 6698c7ae18 Use correct template tags for navigation + pagination. před 4 roky
style-rtl.css 025cf697bd remove word break před 4 roky
style.css 025cf697bd remove word break před 4 roky

README.md

Seedlet

Seedlet is simple, text-driven WordPress theme.

Along with being an excellent standalone theme, Seedlet is designed to be a parent-theme that allows folks to quickly create Gutenberg-ready child-themes for WordPress. [Instructions for how to make child themes are coming soon]

Development

To make changes to the styles, node.js is recommended:

  1. npm i to install the required development dependencies
  2. npm start to start the development server
  3. Make changes in assets/sass

Technical Overview

Principles

When you reduce a theme design down to a set of systematic design decisions, you end up with something called a Style Guide. The Seedlet system works by taking the rules of a Style Guide and expressing them through carefully placed variables or design tokens that influence the appearance of a WordPress site.

This unifies the design decisions needed to style the aesthetic appearance of Gutenberg Blocks, the theme Header + Footer areas, WooCommerce, Jetpack and more. It also syncs styles between the editor and the frontend so that you don’t need to hand-write CSS for both. This greatly speeds up the Gutenberg theme development process and reduces the amount of manual styling that typically goes into developing a theme.

Controls

The theme is built to offer the following controls:

  • Fonts - Font-family, size, weight, and line-height rules.
  • Colors - Primary, secondary, background, foreground and border colors.
  • Spacing - A default 8px vertical rhythm between all blocks and major components. It also includes utility spacing classes for negative margins.
  • Responsive Logic - Built-in responsive behavior across Blocks and Components.

Structure

The system itself lives in the /assets/sass directory as a collection of Sass partials broken up by scope and hierarchy. The partials get compiled down to singular CSS files that live in the main Seedlet directory and cascade downward like so:

Frontend

  • /assets/css/variables.css
  • /style.css

Editor

  • /assets/css/variables-editor.css
  • /style-editor.css

In each view, the variables are loaded first and then the stylesheet is loaded which applies the variables.

License

GNU General Public License v2 or later.

URI: LICENSE

Acknowledgments

CSS vars ponyfill: https://github.com/jhildenbiddle/css-vars-ponyfill