Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/guide/views/template-engines.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Template engines

Yii3 supports multiple template engines through a flexible renderer system. By default, PHP is used as the
template engine, but you can easily add support for other engines like Twig or create your own custom renderers.
template engine, but you can easily add support for other engines like Twig and [Blade](https://github.com/lee-to/yii-blade),
or create your own custom renderers.

PHP templates were described in the "[View](view.md)" guide section.

Expand Down
3 changes: 2 additions & 1 deletion src/guide/views/view.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ flowchart LR

In Yii3 views are typically PHP files that contain presentation logic and HTML markup. The view system provides
a flexible way to organize your presentation layer and supports features like layouts and partial views. Instead of
using plain PHP templates, you can leverage [one of the template engines such as Twig](template-engines.md).
using plain PHP templates, you can leverage one of the template engines such as [Twig](template-engines.md)
or [Blade](https://github.com/lee-to/yii-blade).

## Installation

Expand Down