basic.html 612 B

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>basic-demo</title>
  6. <script src="../dist/template.js"></script>
  7. </head>
  8. <body>
  9. <div id="content"></div>
  10. <script id="test" type="text/html">
  11. {{if isAdmin}}
  12. <h1>{{title}}</h1>
  13. <ul>
  14. {{each list as value i}}
  15. <li>索引 {{i + 1}} :{{value}}</li>
  16. {{/each}}
  17. </ul>
  18. {{/if}}
  19. </script>
  20. <script>
  21. var data = {
  22. title: '基本例子',
  23. isAdmin: true,
  24. list: ['文艺', '博客', '摄影', '电影', '民谣', '旅行', '吉他']
  25. };
  26. var html = template('test', data);
  27. document.getElementById('content').innerHTML = html;
  28. </script>
  29. </body>
  30. </html>