summaryrefslogtreecommitdiff
path: root/doc/plugin-overrides.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'doc/plugin-overrides.markdown')
-rw-r--r--doc/plugin-overrides.markdown6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/plugin-overrides.markdown b/doc/plugin-overrides.markdown
index 722b4126..96a09e47 100644
--- a/doc/plugin-overrides.markdown
+++ b/doc/plugin-overrides.markdown
@@ -34,3 +34,9 @@ $this->template->setTemplateOverride('header', 'theme:layout/header');
```
The first argument is the original template name and the second argument the template to use as replacement.
+
+You can still use the original template using the "kanboard:" prefix:
+
+```php
+<?= $this->render('kanboard:header') ?>
+```