summaryrefslogtreecommitdiff
path: root/readme.txt
diff options
context:
space:
mode:
Diffstat (limited to 'readme.txt')
-rw-r--r--readme.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/readme.txt b/readme.txt
index 48178bd..83b3511 100644
--- a/readme.txt
+++ b/readme.txt
@@ -28,19 +28,19 @@ Page, Theme & Plugin Editor Extension for Timber http://www.upstatement.com/timb
The plugin uses the path defined in `Timber::$locations` as the templates path or falls back to the uploads folder if none is provided.
Either adjust your `Timber::render('page.twig', $context)`-functions like this:
-```
+`
$filenames = [TimberEditor::getTemplateFilename(), 'page.twig'];
Timber::render($filenames, $context);
-```
+`
like this
-```
+`
TimberEditor::render('page.twig', $context);
# 'page.twig' serves as a fallback if the current posts's template doesn't exist
-```
+`
or like this
-```
+`
TimberEditor::renderPost('page.twig', $context);
# renderPost() automatically adds ['post' => new Timber\Post()] to the $context
-```
+`