Skip to content

Commit 0f13f56

Browse files
committed
Update README
1 parent 7c963d3 commit 0f13f56

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

GALLERY.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Here's the list of all the community Blueprints submitted to this repository. See the [contribution guidelines](./README.md#contributing-your-blueprint) to submit your Blueprint and share your WordPress setup with the world!
44

5-
| Title | Preview | Source |
6-
| ----- | ------- | ------ |
7-
| Latest Gutenberg plugin | [Preview](https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/adamziel/blueprints/trunk/v1-examples/latest-gutenberg/blueprint.json) | [Source](https://github.com/adamziel/blueprints/blob/trunk/v1-examples/latest-gutenberg/blueprint.json) |
5+
| Title | Preview | Source |
6+
| ----- | ------- | ------ |
7+
| Latest Gutenberg plugin | [Preview](https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/adamziel/blueprints/trunk/blueprints/latest-gutenberg/blueprint.json) | [Source](https://github.com/adamziel/blueprints/blob/trunk/blueprints/latest-gutenberg/blueprint.json) |
88

docs/contributing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ We encourage you to contribute your own Blueprints to this repository! To make t
44

55
To add a Blueprint to this repository, submit it as a Pull Request to this repository.
66

7-
Your Pull Request must contain a single, new directory created in the `v1-examples` with a `blueprint.json` file in it.
7+
Your Pull Request must contain a single `blueprint.json` file under a path `blueprints/your-blueprint-name/blueprint.json`.
88

99
All static files (WXR, ZIP, JPG etc.) referenced by the Blueprint must be included in the submitted directory in your Pull Request and referenced via the `raw.githubusercontent.com` domain.
1010

index.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"v1-examples/latest-gutenberg/blueprint.json": {
2+
"blueprints/latest-gutenberg/blueprint.json": {
33
"title": "Latest Gutenberg plugin",
44
"description": "A preview of the latest version of the Gutenberg plugin.",
55
"author": "zieladam",

make_index.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
def build_json_index():
77
index = {}
8-
for root, dirs, files in os.walk('v1-examples'):
8+
for root, dirs, files in os.walk('blueprints'):
99
for file in files:
1010
if file == 'blueprint.json':
1111
path = os.path.join(root, file)

0 commit comments

Comments
 (0)