This module integrates the Twig template engine with Omeka-S.
This project borrows heavily from ZendTwig by OxCom.
- Copy the project files into
$OMEKA_ROOT/modules/OmekaTwig - If you installed via
git clone(or thevendordirectory does not exist for some other reason) runcomposer install - Go into the Omeka-S admin UI and activate the module
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.