Creating and Using Templates

Creating and Using Templates

A template is the best way to organize and render HTML from inside your application, whether you need to render HTML from a controller or generate the contents of an email. Templates in Symfony are created with Twig: a flexible, fast, and secure template engine.

Twig Templating Language

The Twig templating language allows you to write concise, readable templates that are more friendly to web designers and, in several ways, more powerful than PHP templates. Take a look at the following Twig template example. Even if it’s the first time you see Twig, you probably understand most of it:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Welcome to Symfony!</title>
  5. </head>
  6. <body>
  7. <h1>{{ page_title }}</h1>
  8. {% if user.isLoggedIn %}
  9. Hello {{ user.name }}!
  10. {% endif %}
  11. {# ... #}
  12. </body>
  13. </html>

Twig syntax is based on these three constructs:

  • {{ ... }}, used to display the content of a variable or the result of evaluating an expression;
  • {% ... %}, used to run some logic, such as a conditional or a loop;
  • {# ... #}, used to add comments to the template (unlike HTML comments, these comments are not included in the rendered page).

You can’t run PHP code inside Twig templates, but Twig provides utilities to run some logic in the templates. For example, filters modify content before being rendered, like the upper filter to uppercase contents:

  1. {{ title|upper }}

Twig comes with a long list of tags, filters and functions that are available by default. In Symfony applications you can also use these Twig filters and functions defined by Symfony and you can create your own Twig filters and functions.

Twig is fast in the prod environment (because templates are compiled into PHP and cached automatically), but convenient to use in the dev environment (because templates are recompiled automatically when you change them).

Twig Configuration

Twig has several configuration options to define things like the format used to display numbers and dates, the template caching, etc. Read the Twig configuration reference to learn about them.

Creating Templates

Before explaining in detail how to create and render templates, look at the following example for a quick overview of the whole process. First, you need to create a new file in the templates/ directory to store the template contents:

  1. {# templates/user/notifications.html.twig #}
  2. <h1>Hello {{ user_first_name }}!</h1>
  3. <p>You have {{ notifications|length }} new notifications.</p>

Then, create a controller that renders this template and passes to it the needed variables:

  1. // src/Controller/UserController.php
  2. namespace App\Controller;
  3. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  4. use Symfony\Component\HttpFoundation\Response;
  5. class UserController extends AbstractController
  6. {
  7. // ...
  8. public function notifications(): Response
  9. {
  10. // get the user information and notifications somehow
  11. $userFirstName = '...';
  12. $userNotifications = ['...', '...'];
  13. // the template path is the relative file path from `templates/`
  14. return $this->render('user/notifications.html.twig', [
  15. // this array defines the variables passed to the template,
  16. // where the key is the variable name and the value is the variable value
  17. // (Twig recommends using snake_case variable names: 'foo_bar' instead of 'fooBar')
  18. 'user_first_name' => $userFirstName,
  19. 'notifications' => $userNotifications,
  20. ]);
  21. }
  22. }

Template Naming

Symfony recommends the following for template names:

  • Use snake case for filenames and directories (e.g. blog_posts.html.twig, admin/default_theme/blog/index.html.twig, etc.);
  • Define two extensions for filenames (e.g. index.html.twig or blog_posts.xml.twig) being the first extension (html, xml, etc.) the final format that the template will generate.

Although templates usually generate HTML contents, they can generate any text-based format. That’s why the two-extension convention simplifies the way templates are created and rendered for multiple formats.

Template Location

Templates are stored by default in the templates/ directory. When a service or controller renders the product/index.html.twig template, they are actually referring to the <your-project>/templates/product/index.html.twig file.

The default templates directory is configurable with the twig.default_path option and you can add more template directories as explained later in this article.

Template Variables

A common need for templates is to print the values stored in the templates passed from the controller or service. Variables usually store objects and arrays instead of strings, numbers and boolean values. That’s why Twig provides quick access to complex PHP variables. Consider the following template:

  1. <p>{{ user.name }} added this comment on {{ comment.publishedAt|date }}</p>

The user.name notation means that you want to display some information (name) stored in a variable (user). Is user an array or an object? Is name a property or a method? In Twig this doesn’t matter.

When using the foo.bar notation, Twig tries to get the value of the variable in the following order:

  1. $foo['bar'] (array and element);
  2. $foo->bar (object and public property);
  3. `$foo->bar() (object and public method);
  4. `$foo->getBar() (object and getter method);
  5. `$foo->isBar() (object and isser method);
  6. `$foo->hasBar() (object and hasser method);
  7. If none of the above exists, use null (or throw a Twig\Error\RuntimeError exception if the strict_variables option is enabled).

This allows to evolve your application code without having to change the template code (you can start with array variables for the application proof of concept, then move to objects with methods, etc.)

Linking to Pages

Instead of writing the link URLs by hand, use the `path() function to generate URLs based on the routing configuration.

Later, if you want to modify the URL of a particular page, all you’ll need to do is change the routing configuration: the templates will automatically generate the new URL.

Consider the following routing configuration:

  • Annotations

    1. // src/Controller/BlogController.php
    2. namespace App\Controller;
    3. // ...
    4. use Symfony\Component\HttpFoundation\Response;
    5. use Symfony\Component\Routing\Annotation\Route;
    6. class BlogController extends AbstractController
    7. {
    8. /**
    9. * @Route("/", name="blog_index")
    10. */
    11. public function index(): Response
    12. {
    13. // ...
    14. }
    15. /**
    16. * @Route("/article/{slug}", name="blog_post")
    17. */
    18. public function show(string $slug): Response
    19. {
    20. // ...
    21. }
    22. }
  • YAML

    1. # config/routes.yaml
    2. blog_index:
    3. path: /
    4. controller: App\Controller\BlogController::index
    5. blog_post:
    6. path: /article/{slug}
    7. controller: App\Controller\BlogController::show
  • XML

    1. <!-- config/routes.xml -->
    2. <?xml version="1.0" encoding="UTF-8" ?>
    3. <routes xmlns="http://symfony.com/schema/routing"
    4. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    5. xsi:schemaLocation="http://symfony.com/schema/routing
    6. https://symfony.com/schema/routing/routing-1.0.xsd">
    7. <route id="blog_index"
    8. path="/"
    9. controller="App\Controller\BlogController::index"/>
    10. <route id="blog_post"
    11. path="/article/{slug}"
    12. controller="App\Controller\BlogController::show"/>
    13. </routes>
  • PHP

    1. // config/routes.php
    2. use App\Controller\BlogController;
    3. use Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator;
    4. return function (RoutingConfigurator $routes) {
    5. $routes->add('blog_index', '/')
    6. ->controller([BlogController::class, 'index'])
    7. ;
    8. $routes->add('blog_post', '/articles/{slug}')
    9. ->controller([BlogController::class, 'show'])
    10. ;
    11. };

Use the `path() Twig function to link to these pages and pass the route name as the first argument and the route parameters as the optional second argument:

  1. <a href="{{ path('blog_index') }}">Homepage</a>
  2. {# ... #}
  3. {% for post in blog_posts %}
  4. <h1>
  5. <a href="{{ path('blog_post', {slug: post.slug}) }}">{{ post.title }}</a>
  6. </h1>
  7. <p>{{ post.excerpt }}</p>
  8. {% endfor %}

The path() function generates relative URLs. If you need to generate absolute URLs (for example when rendering templates for emails or RSS feeds), use theurl() function, which takes the same arguments as path() (e.g.`).

Linking to CSS, JavaScript and Image Assets

If a template needs to link to a static asset (e.g. an image), Symfony provides an asset() Twig function to help generate that URL. First, install theasset` package:

  1. $ composer require symfony/asset

You can now use the `asset() function:

  1. {# the image lives at "public/images/logo.png" #}
  2. <img src="{{ asset('images/logo.png') }}" alt="Symfony!"/>
  3. {# the CSS file lives at "public/css/blog.css" #}
  4. <link href="{{ asset('css/blog.css') }}" rel="stylesheet"/>
  5. {# the JS file lives at "public/bundles/acme/js/loader.js" #}
  6. <script src="{{ asset('bundles/acme/js/loader.js') }}"></script>

The asset() function’s main purpose is to make your application more portable. If your application lives at the root of your host (e.g.https://example.com`), then the rendered path should be /images/logo.png. But if your application lives in a subdirectory (e.g. https://example.com/my_app), each asset path should render with the subdirectory (e.g. /my_app/images/logo.png). The `asset() function takes care of this by determining how your application is being used and generating the correct paths accordingly.

Tip

The `asset() function supports various cache busting techniques via the version, version_format, and json_manifest_path configuration options.

Tip

If you’d like help packaging, versioning and minifying your JavaScript and CSS assets in a modern way, read about Symfony’s Webpack Encore.

If you need absolute URLs for assets, use the `absolute_url() Twig function as follows:

  1. <img src="{{ absolute_url(asset('images/logo.png')) }}" alt="Symfony!"/>
  2. <link rel="shortcut icon" href="{{ absolute_url('favicon.png') }}">

The App Global Variable

Symfony creates a context object that is injected into every Twig template automatically as a variable called app. It provides access to some application information:

  1. <p>Username: {{ app.user.username ?? 'Anonymous user' }}</p>
  2. {% if app.debug %}
  3. <p>Request method: {{ app.request.method }}</p>
  4. <p>Application Environment: {{ app.environment }}</p>
  5. {% endif %}

The app variable (which is an instance of Symfony\Bridge\Twig\AppVariable) gives you access to these variables:

app.user

The current user object or null if the user is not authenticated.

app.request

The Symfony\Component\HttpFoundation\Request object that stores the current request data (depending on your application, this can be a sub-request or a regular request).

app.session

The Symfony\Component\HttpFoundation\Session\Session object that represents the current user’s session or null if there is none.

app.flashes

An array of all the flash messages stored in the session. You can also get only the messages of some type (e.g. `app.flashes(‘notice’)).

app.environment

The name of the current configuration environment (dev, prod, etc).

app.debug

True if in debug mode. False otherwise.

app.token

A Symfony\Component\Security\Core\Authentication\Token\TokenInterface object representing the security token.

In addition to the global app variable injected by Symfony, you can also inject variables automatically to all Twig templates.

Rendering Templates

Rendering a Template in Controllers

If your controller extends from the AbstractController, use the `render() helper:

  1. // src/Controller/ProductController.php
  2. namespace App\Controller;
  3. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  4. use Symfony\Component\HttpFoundation\Response;
  5. class ProductController extends AbstractController
  6. {
  7. public function index(): Response
  8. {
  9. // ...
  10. // the `render() method returns a `Response` object with the
  11. // contents created by the template
  12. return $this->render('product/index.html.twig', [
  13. 'category' => '...',
  14. 'promotions' => ['...', '...'],
  15. ]);
  16. // the `renderView() method only returns the contents created by the
  17. // template, so you can use those contents later in a `Response` object
  18. $contents = $this->renderView('product/index.html.twig', [
  19. 'category' => '...',
  20. 'promotions' => ['...', '...'],
  21. ]);
  22. return new Response($contents);
  23. }
  24. }

If your controller does not extend from AbstractController, you’ll need to fetch services in your controller and use the render() method of thetwig` service.

Rendering a Template in Services

Inject the twig Symfony service into your own services and use its render() method. When using [service autowiring](https://symfony.com/doc/5.3/service_container/autowiring.html) you only need to add an argument in the service constructor and type-hint it with theTwig\Environment` class:

  1. // src/Service/SomeService.php
  2. namespace App\Service;
  3. use Twig\Environment;
  4. class SomeService
  5. {
  6. private $twig;
  7. public function __construct(Environment $twig)
  8. {
  9. $this->twig = $twig;
  10. }
  11. public function someMethod()
  12. {
  13. // ...
  14. $htmlContents = $this->twig->render('product/index.html.twig', [
  15. 'category' => '...',
  16. 'promotions' => ['...', '...'],
  17. ]);
  18. }
  19. }

Rendering a Template in Emails

Read the docs about the mailer and Twig integration.

Rendering a Template Directly from a Route

Although templates are usually rendered in controllers and services, you can render static pages that don’t need any variables directly from the route definition. Use the special Symfony\Bundle\FrameworkBundle\Controller\TemplateController provided by Symfony:

  • YAML

    1. # config/routes.yaml
    2. acme_privacy:
    3. path: /privacy
    4. controller: Symfony\Bundle\FrameworkBundle\Controller\TemplateController
    5. defaults:
    6. # the path of the template to render
    7. template: 'static/privacy.html.twig'
    8. # special options defined by Symfony to set the page cache
    9. maxAge: 86400
    10. sharedAge: 86400
    11. # whether or not caching should apply for client caches only
    12. private: true
    13. # optionally you can define some arguments passed to the template
    14. context:
    15. site_name: 'ACME'
    16. theme: 'dark'
  • XML

    1. <!-- config/routes.xml -->
    2. <?xml version="1.0" encoding="UTF-8" ?>
    3. <routes xmlns="http://symfony.com/schema/routing"
    4. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    5. xsi:schemaLocation="http://symfony.com/schema/routing https://symfony.com/schema/routing/routing-1.0.xsd">
    6. <route id="acme_privacy"
    7. path="/privacy"
    8. controller="Symfony\Bundle\FrameworkBundle\Controller\TemplateController">
    9. <!-- the path of the template to render -->
    10. <default key="template">static/privacy.html.twig</default>
    11. <!-- special options defined by Symfony to set the page cache -->
    12. <default key="maxAge">86400</default>
    13. <default key="sharedAge">86400</default>
    14. <!-- whether or not caching should apply for client caches only -->
    15. <default key="private">true</default>
    16. <!-- optionally you can define some arguments passed to the template -->
    17. <default key="context">
    18. <default key="site_name">ACME</default>
    19. <default key="theme">dark</default>
    20. </default>
    21. </route>
    22. </routes>
  • PHP

    1. // config/routes.php
    2. use Symfony\Bundle\FrameworkBundle\Controller\TemplateController;
    3. use Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator;
    4. return function (RoutingConfigurator $routes) {
    5. $routes->add('acme_privacy', '/privacy')
    6. ->controller(TemplateController::class)
    7. ->defaults([
    8. // the path of the template to render
    9. 'template' => 'static/privacy.html.twig',
    10. // special options defined by Symfony to set the page cache
    11. 'maxAge' => 86400,
    12. 'sharedAge' => 86400,
    13. // whether or not caching should apply for client caches only
    14. 'private' => true,
    15. // optionally you can define some arguments passed to the template
    16. 'context' => [
    17. 'site_name' => 'ACME',
    18. 'theme' => 'dark',
    19. ]
    20. ])
    21. ;
    22. };

New in version 5.1: The context option was introduced in Symfony 5.1.

Checking if a Template Exists

Templates are loaded in the application using a Twig template loader, which also provides a method to check for template existence. First, get the loader:

  1. use Twig\Environment;
  2. class YourService
  3. {
  4. // this code assumes that your service uses autowiring to inject dependencies
  5. // otherwise, inject the service called 'twig' manually
  6. public function __construct(Environment $twig)
  7. {
  8. $loader = $twig->getLoader();
  9. }
  10. }

Then, pass the path of the Twig template to the `exists() method of the loader:

  1. if ($loader->exists('theme/layout_responsive.html.twig')) {
  2. // the template exists, do something
  3. // ...
  4. }

Debugging Templates

Symfony provides several utilities to help you debug issues in your templates.

Linting Twig Templates

The lint:twig command checks that your Twig templates don’t have any syntax errors. It’s useful to run it before deploying your application to production (e.g. in your continuous integration server):

  1. # check all the application templates
  2. $ php bin/console lint:twig
  3. # you can also check directories and individual templates
  4. $ php bin/console lint:twig templates/email/
  5. $ php bin/console lint:twig templates/article/recent_list.html.twig
  6. # you can also show the deprecated features used in your templates
  7. $ php bin/console lint:twig --show-deprecations templates/email/

Inspecting Twig Information

The debug:twig command lists all the information available about Twig (functions, filters, global variables, etc.). It’s useful to check if your custom Twig extensions are working properly and also to check the Twig features added when installing packages:

  1. # list general information
  2. $ php bin/console debug:twig
  3. # filter output by any keyword
  4. $ php bin/console debug:twig --filter=date
  5. # pass a template path to show the physical file which will be loaded
  6. $ php bin/console debug:twig @Twig/Exception/error.html.twig

The Dump Twig Utilities

Symfony provides a dump() function as an improved alternative to PHP’s `var_dump() function. This function is useful to inspect the contents of any variable and you can use it in Twig templates too.

First, make sure that the VarDumper component is installed in the application:

  1. $ composer require symfony/var-dumper

Then, use either the {% dump %} tag or the {{ dump() }} function depending on your needs:

  1. {# templates/article/recent_list.html.twig #}
  2. {# the contents of this variable are sent to the Web Debug Toolbar
  3. instead of dumping them inside the page contents #}
  4. {% dump articles %}
  5. {% for article in articles %}
  6. {# the contents of this variable are dumped inside the page contents
  7. and they are visible on the web page #}
  8. {{ dump(article) }}
  9. <a href="/article/{{ article.slug }}">
  10. {{ article.title }}
  11. </a>
  12. {% endfor %}

To avoid leaking sensitive information, the dump() function/tag is only available in thedevandtest[configuration environments]($d9c7f3fca23b14fc.md#configuration-environments). If you try to use it in theprod` environment, you will see a PHP error.

Reusing Template Contents

Including Templates

If certain Twig code is repeated in several templates, you can extract it into a single “template fragment” and include it in other templates. Imagine that the following code to display the user information is repeated in several places:

  1. {# templates/blog/index.html.twig #}
  2. {# ... #}
  3. <div class="user-profile">
  4. <img src="{{ user.profileImageUrl }}" alt="{{ user.fullName }}"/>
  5. <p>{{ user.fullName }} - {{ user.email }}</p>
  6. </div>

First, create a new Twig template called blog/_user_profile.html.twig (the _ prefix is optional, but it’s a convention used to better differentiate between full templates and template fragments).

Then, remove that content from the original blog/index.html.twig template and add the following to include the template fragment:

  1. {# templates/blog/index.html.twig #}
  2. {# ... #}
  3. {{ include('blog/_user_profile.html.twig') }}

The `include() Twig function takes as argument the path of the template to include. The included template has access to all the variables of the template that includes it (use the with_context option to control this).

You can also pass variables to the included template. This is useful for example to rename variables. Imagine that your template stores the user information in a variable called blog_post.author instead of the user variable that the template fragment expects. Use the following to rename the variable:

  1. {# templates/blog/index.html.twig #}
  2. {# ... #}
  3. {{ include('blog/_user_profile.html.twig', {user: blog_post.author}) }}

Embedding Controllers

Including template fragments is useful to reuse the same content on several pages. However, this technique is not the best solution in some cases.

Imagine that the template fragment displays the three most recent blog articles. To do that, it needs to make a database query to get those articles. When using the `include() function, you’d need to do the same database query in every page that includes the fragment. This is not very convenient.

A better alternative is to embed the result of executing some controller with the render() andcontroller() Twig functions.

First, create the controller that renders a certain number of recent articles:

  1. // src/Controller/BlogController.php
  2. namespace App\Controller;
  3. use Symfony\Component\HttpFoundation\Response;
  4. // ...
  5. class BlogController extends AbstractController
  6. {
  7. public function recentArticles(int $max = 3): Response
  8. {
  9. // get the recent articles somehow (e.g. making a database query)
  10. $articles = ['...', '...', '...'];
  11. return $this->render('blog/_recent_articles.html.twig', [
  12. 'articles' => $articles
  13. ]);
  14. }
  15. }

Then, create the blog/_recent_articles.html.twig template fragment (the _ prefix in the template name is optional, but it’s a convention used to better differentiate between full templates and template fragments):

  1. {# templates/blog/_recent_articles.html.twig #}
  2. {% for article in articles %}
  3. <a href="{{ path('blog_show', {slug: article.slug}) }}">
  4. {{ article.title }}
  5. </a>
  6. {% endfor %}

Now you can call to this controller from any template to embed its result:

  1. {# templates/base.html.twig #}
  2. {# ... #}
  3. <div id="sidebar">
  4. {# if the controller is associated with a route, use the path() or url() functions #}
  5. {{ render(path('latest_articles', {max: 3})) }}
  6. {{ render(url('latest_articles', {max: 3})) }}
  7. {# if you don't want to expose the controller with a public URL,
  8. use the controller() function to define the controller to execute #}
  9. {{ render(controller(
  10. 'App\\Controller\\BlogController::recentArticles', {max: 3}
  11. )) }}
  12. </div>

When using the controller() function, controllers are not accessed using a regular Symfony route but through a special URL used exclusively to serve those template fragments. Configure that special URL in thefragments` option:

  • YAML

    1. # config/packages/framework.yaml
    2. framework:
    3. # ...
    4. fragments: { path: /_fragment }
  • XML

    1. <!-- config/packages/framework.xml -->
    2. <?xml version="1.0" encoding="UTF-8" ?>
    3. <container xmlns="http://symfony.com/schema/dic/services"
    4. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    5. xmlns:framework="http://symfony.com/schema/dic/symfony"
    6. xsi:schemaLocation="http://symfony.com/schema/dic/services
    7. https://symfony.com/schema/dic/services/services-1.0.xsd
    8. http://symfony.com/schema/dic/symfony https://symfony.com/schema/dic/symfony/symfony-1.0.xsd">
    9. <!-- ... -->
    10. <framework:config>
    11. <framework:fragment path="/_fragment"/>
    12. </framework:config>
    13. </container>
  • PHP

    1. // config/packages/framework.php
    2. use Symfony\Config\FrameworkConfig;
    3. return static function (FrameworkConfig $framework) {
    4. // ...
    5. $framework->fragments()->path('/_fragment');
    6. };

Caution

Embedding controllers requires making requests to those controllers and rendering some templates as result. This can have a significant impact on the application performance if you embed lots of controllers. If possible, cache the template fragment.

See also

Templates can also embed contents asynchronously with the hinclude.js JavaScript library.

Template Inheritance and Layouts

As your application grows you’ll find more and more repeated elements between pages, such as headers, footers, sidebars, etc. Including templates and embedding controllers can help, but when pages share a common structure, it’s better to use inheritance.

The concept of Twig template inheritance is similar to PHP class inheritance. You define a parent template that other templates can extend from and child templates can override parts of the parent template.

Symfony recommends the following three-level template inheritance for medium and complex applications:

  • templates/base.html.twig, defines the common elements of all application templates, such as <head>, <header>, <footer>, etc.;
  • templates/layout.html.twig, extends from base.html.twig and defines the content structure used in all or most of the pages, such as a two-column content + sidebar layout. Some sections of the application can define their own layouts (e.g. templates/blog/layout.html.twig);
  • templates/*.html.twig, the application pages which extend from the main layout.html.twig template or any other section layout.

In practice, the base.html.twig template would look like this:

  1. {# templates/base.html.twig #}
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <meta charset="UTF-8">
  6. <title>{% block title %}My Application{% endblock %}</title>
  7. {% block stylesheets %}
  8. <link rel="stylesheet" type="text/css" href="/css/base.css"/>
  9. {% endblock %}
  10. </head>
  11. <body>
  12. {% block body %}
  13. <div id="sidebar">
  14. {% block sidebar %}
  15. <ul>
  16. <li><a href="{{ path('homepage') }}">Home</a></li>
  17. <li><a href="{{ path('blog_index') }}">Blog</a></li>
  18. </ul>
  19. {% endblock %}
  20. </div>
  21. <div id="content">
  22. {% block content %}{% endblock %}
  23. </div>
  24. {% endblock %}
  25. </body>
  26. </html>

The Twig block tag defines the page sections that can be overridden in the child templates. They can be empty, like the content block or define a default content, like the title block, which is displayed when child templates don’t override them.

The blog/layout.html.twig template could be like this:

  1. {# templates/blog/layout.html.twig #}
  2. {% extends 'base.html.twig' %}
  3. {% block content %}
  4. <h1>Blog</h1>
  5. {% block page_contents %}{% endblock %}
  6. {% endblock %}

The template extends from base.html.twig and only defines the contents of the content block. The rest of the parent template blocks will display their default contents. However, they can be overridden by the third-level inheritance template, such as blog/index.html.twig, which displays the blog index:

  1. {# templates/blog/index.html.twig #}
  2. {% extends 'blog/layout.html.twig' %}
  3. {% block title %}Blog Index{% endblock %}
  4. {% block page_contents %}
  5. {% for article in articles %}
  6. <h2>{{ article.title }}</h2>
  7. <p>{{ article.body }}</p>
  8. {% endfor %}
  9. {% endblock %}

This template extends from the second-level template (blog/layout.html.twig) but overrides blocks of different parent templates: page_contents from blog/layout.html.twig and title from base.html.twig.

When you render the blog/index.html.twig template, Symfony uses three different templates to create the final contents. This inheritance mechanism boosts your productivity because each template includes only its unique contents and leaves the repeated contents and HTML structure to some parent templates.

Caution

When using extends, a child template is forbidden to define template parts outside of a block. The following code throws a SyntaxError:

  1. {# app/Resources/views/blog/index.html.twig #}
  2. {% extends 'base.html.twig' %}
  3. {# the line below is not captured by a "block" tag #}
  4. <div class="alert">Some Alert</div>
  5. {# the following is valid #}
  6. {% block content %}My cool blog posts{% endblock %}

Read the Twig template inheritance docs to learn more about how to reuse parent block contents when overriding templates and other advanced features.

Output Escaping

Imagine that your template includes the Hello {{ name }} code to display the user name. If a malicious user sets <script>alert('hello!')</script> as their name and you output that value unchanged, the application will display a JavaScript popup window.

This is known as a Cross-Site Scripting (XSS) attack. And while the previous example seems harmless, the attacker could write more advanced JavaScript code to perform malicious actions.

To prevent this attack, use “output escaping” to transform the characters which have special meaning (e.g. replace < by the &lt; HTML entity). Symfony applications are safe by default because they perform automatic output escaping thanks to the Twig autoescape option:

  1. <p>Hello {{ name }}</p>
  2. {# if 'name' is '<script>alert('hello!')</script>', Twig will output this:
  3. '<p>Hello &lt;script&gt;alert(&#39;hello!&#39;)&lt;/script&gt;</p>' #}

If you are rendering a variable that is trusted and contains HTML contents, use the Twig raw filter to disable the output escaping for that variable:

  1. <h1>{{ product.title|raw }}</h1>
  2. {# if 'product.title' is 'Lorem <strong>Ipsum</strong>', Twig will output
  3. exactly that instead of 'Lorem &lt;strong&gt;Ipsum&lt;/strong&gt;' #}

Read the Twig output escaping docs to learn more about how to disable output escaping for a block or even an entire template.

Template Namespaces

Although most applications store their templates in the default templates/ directory, you may need to store some or all of them in different directories. Use the twig.paths option to configure those extra directories. Each path is defined as a key: value pair where the key is the template directory and the value is the Twig namespace, which is explained later:

  • YAML

    1. # config/packages/twig.yaml
    2. twig:
    3. # ...
    4. paths:
    5. # directories are relative to the project root dir (but you
    6. # can also use absolute directories)
    7. 'email/default/templates': ~
    8. 'backend/templates': ~
  • XML

    1. <!-- config/packages/twig.xml -->
    2. <container xmlns="http://symfony.com/schema/dic/services"
    3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    4. xmlns:twig="http://symfony.com/schema/dic/twig"
    5. xsi:schemaLocation="http://symfony.com/schema/dic/services
    6. https://symfony.com/schema/dic/services/services-1.0.xsd
    7. http://symfony.com/schema/dic/twig https://symfony.com/schema/dic/twig/twig-1.0.xsd">
    8. <twig:config>
    9. <!-- ... -->
    10. <!-- directories are relative to the project root dir (but you
    11. can also use absolute directories -->
    12. <twig:path>email/default/templates</twig:path>
    13. <twig:path>backend/templates</twig:path>
    14. </twig:config>
    15. </container>
  • PHP

    1. // config/packages/twig.php
    2. use Symfony\Config\TwigConfig;
    3. return static function (TwigConfig $twig) {
    4. // ...
    5. // directories are relative to the project root dir (but you
    6. // can also use absolute directories)
    7. $twig->path('email/default/templates', null);
    8. $twig->path('backend/templates', null);
    9. };

When rendering a template, Symfony looks for it first in the twig.paths directories that don’t define a namespace and then falls back to the default template directory (usually, templates/).

Using the above configuration, if your application renders for example the layout.html.twig template, Symfony will first look for email/default/templates/layout.html.twig and backend/templates/layout.html.twig. If any of those templates exists, Symfony will use it instead of using templates/layout.html.twig, which is probably the template you wanted to use.

Twig solves this problem with namespaces, which group several templates under a logic name unrelated to their actual location. Update the previous configuration to define a namespace for each template directory:

  • YAML

    1. # config/packages/twig.yaml
    2. twig:
    3. # ...
    4. paths:
    5. 'email/default/templates': 'email'
    6. 'backend/templates': 'admin'
  • XML

    1. <!-- config/packages/twig.xml -->
    2. <container xmlns="http://symfony.com/schema/dic/services"
    3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    4. xmlns:twig="http://symfony.com/schema/dic/twig"
    5. xsi:schemaLocation="http://symfony.com/schema/dic/services
    6. https://symfony.com/schema/dic/services/services-1.0.xsd
    7. http://symfony.com/schema/dic/twig https://symfony.com/schema/dic/twig/twig-1.0.xsd">
    8. <twig:config>
    9. <!-- ... -->
    10. <twig:path namespace="email">email/default/templates</twig:path>
    11. <twig:path namespace="admin">backend/templates</twig:path>
    12. </twig:config>
    13. </container>
  • PHP

    1. // config/packages/twig.php
    2. use Symfony\Config\TwigConfig;
    3. return static function (TwigConfig $twig) {
    4. // ...
    5. $twig->path('email/default/templates', 'email');
    6. $twig->path('backend/templates', 'admin');
    7. };

Now, if you render the layout.html.twig template, Symfony will render the templates/layout.html.twig file. Use the special syntax @ + namespace to refer to the other namespaced templates (e.g. @email/layout.html.twig and @admin/layout.html.twig).

Note

A single Twig namespace can be associated with more than one template directory. In that case, the order in which paths are added is important because Twig will start looking for templates from the first defined path.

Bundle Templates

If you install packages/bundles in your application, they may include their own Twig templates (in the Resources/views/ directory of each bundle). To avoid messing with your own templates, Symfony adds bundle templates under an automatic namespace created after the bundle name.

For example, the templates of a bundle called AcmeFooBundle are available under the AcmeFoo namespace. If this bundle includes the template <your-project>/vendor/acmefoo-bundle/Resources/views/user/profile.html.twig, you can refer to it as @AcmeFoo/user/profile.html.twig.

Tip

You can also override bundle templates in case you want to change some parts of the original bundle templates.

Learn more

This work, including the code samples, is licensed under a Creative Commons BY-SA 3.0 license.