Unlock this challenge:
By default, Twig templates are stored in templates/. Why is this the default directory?
templates/
The templates/ directory is hardcoded as the default path inside TwigBundle.
The templates/ directory is configured in config/packages/twig.yaml.
config/packages/twig.yaml
The templates/ is specified when you render a template.
Internally, Twig always defaults to first looking for a templates/ directory before trying other paths.