-
Notifications
You must be signed in to change notification settings - Fork 182
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #106 from WordPress/add/emptytheme-readme
Add a readme for the emptytheme
- Loading branch information
Showing
1 changed file
with
14 additions
and
0 deletions.
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,14 @@ | ||
# Empty Theme | ||
|
||
Empty theme contains all of the boilerplate you need to get started building a block-based theme: | ||
|
||
- An empty `theme.json` file. | ||
- `functions.php` with some basic setup. | ||
- `style.css` to set up the theme. | ||
- An empty `index.php` | ||
|
||
It also includes a basic `index.html` template and `header.html` template part so that the theme works out of the box with no modifications. | ||
|
||
For more background on the theme, [read the original PR](https://github.com/WordPress/theme-experiments/pull/81). | ||
|
||
🌟 [Use the command line tool](https://github.com/WordPress/theme-experiments#generating-your-own-starter-theme) to generate your own brand-new theme based on this boilerplate. |