digihum / omeka-s-module-twig
Adds the twig templating language to Omeka-S
Installs: 4
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 4
Forks: 0
Open Issues: 0
Type:omeka-s-module
Requires
- php: >=5.6.0
- twig/twig: ^1.28
This package is auto-updated.
Last update: 2024-10-17 17:26:35 UTC
README
This module integrates the Twig template engine with Omeka-S.
Thanks
This project borrows heavily from ZendTwig by OxCom.
Installation
- Copy the project files into
$OMEKA_ROOT/modules/OmekaTwig
- If you installed via
git clone
(or thevendor
directory does not exist for some other reason) runcomposer install
- Go into the Omeka-S admin UI and activate the module
Using Twig templates in themes
The module makes Omeka-S look for *.twig
files in the normal theme directories. If a *.twig
file is not found it then falls back to looking for a *.phtml
file. E.g. if layout.phtml
and layout.twig
are both in /view/layout
and the module is enabled layout.twig
will be rendered. If the module is then disabled layout.phtml
will be rendered.
If a twig template contains a phtml sub-template the subtemplate will be rendered using the normal Omeka-S phtml renderer. However, phtml templates cannot contain twig sub-templates.
An example layout.twig
based on the default theme is available in /docs/examples
.