Skip to content

Commit 9d2313b

Browse files
committed
Removed Templating component docs
1 parent 1079fe3 commit 9d2313b

File tree

4 files changed

+8
-309
lines changed

4 files changed

+8
-309
lines changed

_build/redirection_map

+5-4
Original file line numberDiff line numberDiff line change
@@ -350,10 +350,10 @@
350350
/components/routing/hostname_pattern /routing/hostname_pattern
351351
/components/security/introduction /components/security
352352
/components/security/index /components/security
353-
/components/templating/introduction /components/templating
354-
/components/templating/index /components/templating
355-
/components/templating/helpers/assetshelper /components/templating/assetshelper
356-
/components/templating/helpers/slotshelper /components/templating/slotshelper
353+
/components/templating/introduction https://github.com/symfony/templating
354+
/components/templating/index https://github.com/symfony/templating
355+
/components/templating/helpers/assetshelper https://github.com/symfony/templating
356+
/components/templating/helpers/slotshelper https://github.com/symfony/templating
357357
/components/translation/introduction /components/translation
358358
/components/translation/index /components/translation
359359
/components/var_dumper/introduction /components/var_dumper
@@ -500,3 +500,4 @@
500500
/components/polyfill_php73 https://github.com/symfony/polyfill-php73
501501
/components/polyfill_uuid https://github.com/symfony/polyfill-uuid
502502
/components/web_link https://github.com/symfony/web-link
503+
/components/templating https://github.com/symfony/templating

components/templating.rst

-215
This file was deleted.

components/templating/slotshelper.rst

-87
This file was deleted.

introduction/from_flat_php_to_symfony.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -243,8 +243,7 @@ the ``templates/layout.php``:
243243
You now have a setup that will allow you to reuse the layout.
244244
Unfortunately, to accomplish this, you're forced to use a few ugly
245245
PHP functions (``ob_start()``, ``ob_get_clean()``) in the template. Symfony
246-
solves this using a :doc:`Templating </components/templating>` component.
247-
You'll see it in action shortly.
246+
solves this using a `Templating`_ component. You'll see it in action shortly.
248247

249248
Adding a Blog "show" Page
250249
-------------------------
@@ -683,7 +682,7 @@ migrating the blog from flat PHP to Symfony has improved your life:
683682
:doc:`routing </routing>`, or rendering :doc:`controllers </controller>`;
684683

685684
* Symfony gives you **access to open source tools** such as `Doctrine`_ and the
686-
:doc:`Templating </components/templating>`,
685+
`Templating`_,
687686
:doc:`Security </components/security>`,
688687
:doc:`Form </components/form>`, `Validator`_ and
689688
`Translation`_ components (to name
@@ -703,6 +702,7 @@ A good selection of `Symfony community tools`_ can be found on GitHub.
703702

704703
.. _`Model-View-Controller`: https://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller
705704
.. _`Doctrine`: https://www.doctrine-project.org/
705+
.. _Templating: https://github.com/symfony/templating
706706
.. _Translation: https://github.com/symfony/translation
707707
.. _`Composer`: https://getcomposer.org
708708
.. _`download Composer`: https://getcomposer.org/download/

0 commit comments

Comments
 (0)