Implementing a search path

Closes #30
This commit is contained in:
Tyler Akins
2019-07-19 21:10:42 -05:00
parent 9f6d3bcdab
commit 7a8d1d260e
16 changed files with 255 additions and 130 deletions

View File

@@ -0,0 +1,3 @@
* Child1
{{> deeper/child2 }}
{{> ../relative-templates/deeper/child2 }}

View File

@@ -0,0 +1 @@
* Child3

View File

@@ -0,0 +1,2 @@
* Child2
{{> ../child3 }}

View File

@@ -0,0 +1,7 @@
This is "file"
Child1 in different ways
{{> child1 }}
{{> ./child1 }}
{{> ../relative-templates/child1 }}
{{> deeper/../child1 }}