Skip to content

Commit 30f2af5

Browse files
authored
Merge pull request #152 from infinum/develop
Main deploy kickstart
2 parents 6e6443d + 3a81411 commit 30f2af5

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

website/blog/2022-03-03-adding-blocks-wpcli.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@ wp boilerplate use_block --name=example
4444
Since our blocks use a predefined structure to make everything register automatically, adding Example block with WP-CLI will generate all required files. After it's added, feel free to rename the folder, as well as files with the name of your block and start modifying all the files. Simply replace "example" with the name of your block.
4545

4646
### Further reading
47+
4748
Our documentation has all this covered in a lot more detail, so if you would like to better understand the structure of our blocks and components, here are some chapters covering these topics:
48-
- [Structure](/docs/basics/the-structure)
49+
50+
- [Architecture concepts](/docs/basics/architecture-concepts)
4951
- [Block Structure](/docs/basics/block-structure)
5052
- [Component Structure](/docs/basics/blocks-component-structure)

website/docs/basics/architecture-concepts.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ title: Architecture concepts
55

66
## Project structure
77

8-
98
[![docs-source](https://img.shields.io/badge/source-eightshift--libs-blue?style=for-the-badge&logo=php&labelColor=2a2a2a)](https://github.com/infinum/eightshift-libs)
109

1110
Eightshift Development Kit follows a strict project structure to support autoloading, dependency injection and `wp boilerplate` commands, as well as conventions to increase codebase understanding between developers. As an added benefit, following this structure and conventions makes your codebase more consistent and organized.

website/src/theme/sections/showcase-grid/showcase-grid.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React from 'react';
1+
import React, { useEffect, useState } from 'react';
22
import useBaseUrl from '@docusaurus/useBaseUrl';
33
import Heading from '../../components/heading/heading';
44
import Container from '../../components/container/container';

0 commit comments

Comments
 (0)