summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2012-10-02 15:11:41 -0500
committerJesse Luehrs <doy@tozt.net>2012-10-02 15:11:41 -0500
commit5dc5000f75492b6f78d27fab3c56055d4534b5a7 (patch)
treef1d2ab9d6161cdec7661104b4ca5cf3a039f5d16 /t
parentd6dcf220d57e4fbdb736121acb19a83f485fa158 (diff)
downloadtext-handlebars-5dc5000f75492b6f78d27fab3c56055d4534b5a7.tar.gz
text-handlebars-5dc5000f75492b6f78d27fab3c56055d4534b5a7.zip
forgot these files
Diffstat (limited to 't')
-rw-r--r--t/mustache/partials/base.mustache4
-rw-r--r--t/mustache/partials/user.mustache1
2 files changed, 5 insertions, 0 deletions
diff --git a/t/mustache/partials/base.mustache b/t/mustache/partials/base.mustache
new file mode 100644
index 0000000..e18ce2d
--- /dev/null
+++ b/t/mustache/partials/base.mustache
@@ -0,0 +1,4 @@
+<h2>Names</h2>
+{{#names}}
+{{> user}}
+{{/names}}
diff --git a/t/mustache/partials/user.mustache b/t/mustache/partials/user.mustache
new file mode 100644
index 0000000..a57be02
--- /dev/null
+++ b/t/mustache/partials/user.mustache
@@ -0,0 +1 @@
+<strong>{{name}}</strong>