diff --git a/docs/en/index.md b/docs/en/index.md index f62f043fd..447404dbc 100644 --- a/docs/en/index.md +++ b/docs/en/index.md @@ -16,7 +16,7 @@ Please read our [guide to contributing documentation](misc/contributing#writing- ### Level 1: Building your first SilverStripe website - * [Introduction to PHP5 (zend.com)](http://devzone.zend.com/node/view/id/627) + * [Introduction to PHP5 (zend.com)](http://devzone.zend.com/6/php-101--php-for-the-absolute-beginner) * [Tutorials](tutorials) * [1. Building a basic site](tutorials/1-building-a-basic-site) * [2. Extending a basic site](tutorials/2-extending-a-basic-site) @@ -49,7 +49,6 @@ Please read our [guide to contributing documentation](misc/contributing#writing- * [Debugging](topics/debugging) * [Errorhandling](topics/error-handling) * [Testing Guide](topics/testing/): Framework for automated testing like Unittests -* [Built-in Page Controls](reference/built-in-page-controls) * [Execution Pipeline](reference/execution-pipeline): Tracking a request from director to template-rendering * [Recipes/Howtos](howto/) diff --git a/docs/en/reference/index.md b/docs/en/reference/index.md index 2975c8ba8..3d06b9e89 100644 --- a/docs/en/reference/index.md +++ b/docs/en/reference/index.md @@ -4,7 +4,6 @@ Reference articles complement our auto-generated [API docs](http://api.silverstr * [Advanced templates](advanced-templates): Advanced SilverStripe template syntax * [BBCode](bbcode): Extensible shortcode syntax -* [Built-in page controls](built-in-page-controls): Explains the template syntax and available variables/placeholders * [ComplexTableField](complextablefield): Manage records and their relations inside the CMS * [Database Structure](database-structure): Conventions and best practices for database tables and fields * [DataObject](dataobject): Base class for database records diff --git a/docs/en/reference/templates.md b/docs/en/reference/templates.md index 710cffae3..1fe556dde 100644 --- a/docs/en/reference/templates.md +++ b/docs/en/reference/templates.md @@ -68,7 +68,8 @@ If a variable returns a string, that string will be inserted into the template. the system will attempt to render the object through its forTemplate() method. If the `forTemplate()` method has not been defined, the system will return an error. -SilverStripe provides lots of properties and methods. For more details on built-in page controls and variables, see http://doc.silverstripe.org/framework/en/reference/built-in-page-controls +SilverStripe provides many additional properties on the `SiteTree` class, +see [Page Type Templates](/topics/page-type-templates) for details. ### Escaping