advancedsnippet.txt 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. Advanced templating: illustrates defines and includes.
  2. Include external snippet defined in a variable:
  3. {{#def.externalsnippet}}
  4. Load external template from a file:
  5. {{#def.loadfile('/snippet.txt')}}
  6. Load external template from a file and cache in a variable:
  7. {{#def['snippet.txt'] || (def['snippet.txt'] = def.loadfile('/snippet.txt'))}}
  8. Use cached file again:
  9. {{#def['snippet.txt']}}
  10. Here is a def block that will be used later. This snippet can be referenced from external templates too:
  11. {{##def.snippet1:
  12. Some snippet that will be included {{#def.a}} later {{=it.f1}}
  13. #}}
  14. First use of snippet1:
  15. {{#def.snippet1}}
  16. Second use of snippet1:
  17. {{#def.snippet1}}
  18. Include snippet1 if true:
  19. {{# true && def.snippet1 }}
  20. Runtime and Compile time evaluation used together:
  21. {{= it.f3 + {{#def.a + def.b}} }}
  22. Include xyz or insert 'not found':
  23. {{#def.xyz || 'not found'}}
  24. Set xyz to 1 and exclude result from output:
  25. {{##def.xyz=1#}} is identical to {{#(def.xyz=1) && ""}}
  26. Compare xyz to 1, show 'xyz is not 1' if false:
  27. {{#def.xyz === 1 || 'xyz is not 1'}}
  28. {{ if ({{#!def.abc}}) { }}
  29. {{#def.abc}} is falsy
  30. {{ } }}
  31. {{ if ({{#def.xyz === 1}}) { }}
  32. if(true) block
  33. {{ } }}
  34. {{##def.fntest = function() {
  35. return "Function test worked!";
  36. }
  37. #}}
  38. {{#def.fntest()}}
  39. Conditionals:
  40. {{? !it.altEmail }}
  41. <p>
  42. second email: {{= it.altEmail }}
  43. </p>
  44. {{?? true }}
  45. else case worked
  46. {{?}}
  47. Array iterators
  48. {{~ it.farray :p }}
  49. <h1>{{=p.farray}}<h1>
  50. {{~ p.farray :value:i }}
  51. <h2>{{=i}}: {{=value}}</h2>
  52. {{~ value :w }}
  53. <h3>{{=w}}</h3>
  54. {{~}}
  55. {{~}}
  56. {{~}}
  57. {{~ ["apple", "banana", "orange"] :k}}
  58. {{=k}}
  59. {{~}}
  60. {{~ (function(){ return [1,2,3]})() :k}}
  61. {{=k}}
  62. {{~}}
  63. {{ function children(it) { }}
  64. {{?it.Nodes.length}}
  65. <ul>
  66. {{~ it.Nodes :p}}
  67. <li>
  68. {{=p.title}}
  69. {{children(p);}}
  70. </li>
  71. {{~}}
  72. </ul>
  73. {{?}}
  74. {{ } }}
  75. {{ children( {Nodes:[ {title:"1.1", Nodes:[ {title:"1.1.1", Nodes:[]}, {title:"1.1.2", Nodes:[]}] }, { title:"1.2", Nodes:[]}, { title:"1.3", Nodes:[]}], title:"1" } ); }}
  76. {{##def.block:param:
  77. <div>{{=param}}</div>
  78. #}}
  79. {{##def.block1:param:
  80. <div>{{=param.a}}</div>
  81. #}}
  82. {{#(def.block:'text' || '') + def.block:5}}
  83. {{#def.block:it.f3 || ''}}
  84. {{#def.block:"lala tralala" || ''}}
  85. {{#def.block1:{a:1, b:2} || ''}}
  86. {{##def.testFunctionWithParam = function(str) {
  87. return "My name is: " + str;
  88. }
  89. #}}
  90. {{##def.mytestparam: {{=it.name}} #}}
  91. {{#def.testFunctionWithParam(def.mytestparam)}}
  92. {{#def.testFunctionWithParam("\{\{=it.name\}\}")}}
  93. {{##def.testParamDef:myparam:
  94. My name is: {{=myparam}}
  95. #}}
  96. {{#def.testParamDef:it.name}}
  97. The end