Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(117)

Unified Diff: utils/tests/template/top_searches.tmpl

Issue 9695048: Template parser (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Siggi's comments Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « utils/tests/template/test_with.dart ('k') | utils/tests/template/top_searches2.tmpl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/tests/template/top_searches.tmpl
diff --git a/utils/tests/template/top_searches.tmpl b/utils/tests/template/top_searches.tmpl
new file mode 100644
index 0000000000000000000000000000000000000000..8004f282d34a9a95877daec16bec4ce4b52ece39
--- /dev/null
+++ b/utils/tests/template/top_searches.tmpl
@@ -0,0 +1,18 @@
+template TopSearches(Person person, var searches) {
+ <div>
+ ${#with person}
+ <div>
+ <span>${name},&nbsp;</span>
+ <span>age&nbsp;=&nbsp;</span>
+ <span>${age}</span>
+ </div>
+ ${#each searches}
+ <div>
+ <span style="margin-left: 10px;">query=${query}</span>
+ <span style="margin-left: 20px;">hits=${total}</span>
+ </div>
+ ${/each}
+ ${/with}
+ </div>
+}
+
« no previous file with comments | « utils/tests/template/test_with.dart ('k') | utils/tests/template/top_searches2.tmpl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698