diff --git a/en/00_Getting_Started/05_Recipes.md b/en/00_Getting_Started/05_Recipes.md index b673bb215..ef40822e9 100644 --- a/en/00_Getting_Started/05_Recipes.md +++ b/en/00_Getting_Started/05_Recipes.md @@ -23,11 +23,10 @@ Silverstripe CMS is powered by a system of components in the form of Composer pa By design, modules tend to be small and serve a specific function. You may need to combine many modules to achieve a wider goal. -For example, the [`silverstripe/blog`](https://github.com/silverstripe/silverstripe-blog) module by itself simply allows you to create blog posts. It does not include all the features you could want in a blog, like a comment system or widgets to display related content. +For example, the [`silverstripe/blog`](https://github.com/silverstripe/silverstripe-blog) module by itself simply allows you to create blog posts. It does not include all the features you could want in a blog, like a comment system to display related content. The [`silverstripe/recipe-blog`](https://github.com/silverstripe/recipe-blog) recipe installs `silverstripe/blog` module, but also: -- [`silverstripe/widgets`](https://github.com/silverstripe/silverstripe-widgets) and [`silverstripe/content-widget`](https://github.com/silverstripe/silverstripe-content-widget) to display widgets - [`silverstripe/comments`](https://github.com/silverstripe/silverstripe-comments) and [`silverstripe/comment-notifications`](https://github.com/silverstripe/comment-notifications) to allow the management of comments on blog post - [`silverstripe/spamprotection`](https://github.com/silverstripe/silverstripe-spamprotection) to provide basic SPAM protection on comments. diff --git a/en/02_Developer_Guides/05_Extending/index.md b/en/02_Developer_Guides/05_Extending/index.md index 35c4c6080..9c47e9ab2 100644 --- a/en/02_Developer_Guides/05_Extending/index.md +++ b/en/02_Developer_Guides/05_Extending/index.md @@ -8,8 +8,7 @@ icon: code # Extending Silverstripe CMS No two applications are ever going to be the same and Silverstripe CMS is built with this in mind. The core framework -includes common functionality and default behaviors easily complemented with add-ons such as modules, widgets and -themes. +includes common functionality and default behaviors easily complemented with add-ons such as modules, and themes. Silverstripe CMS includes a myriad of extension API's such as *Extension Hooks* and support for programming patterns such as *Dependency Injection*. Allowing developers to tailor the framework to their needs without modifying the core