raphhh / puppy-template
template module for Puppy framework
1.0.0
2015-04-11 21:00 UTC
Requires
- php: >=5.4
- raphhh/puppy-application: ~1.0
- twig/twig: ~1.18
Requires (Dev)
- phpunit/phpunit: @stable
This package is auto-updated.
Last update: 2024-10-25 22:09:57 UTC
README
Template module for Puppy framework.
See Puppy framework for more information.
Installation
$ composer require raphhh/puppy-template
Documentation
Service for Twig_Environment. See Twig for more information.
Note that the services are accessible in twig templates with the global variable "services".
Twig has also a filter "link". This filter prepends the config "baseUrl" to a link.
<a href="{{ my/page|link }}">click here</a>
Config options
- 'template.directory.main' => path to the directory of the template files.
- 'template.directory.cache' => path to the directory of the cache of the template files.
- 'template.debug' => indicates if the debug mode is enable in the template.
- 'baseUrl' => gives the base url to apply for the twig filter "link".