parts.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>{%= title %}</title>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  6. <meta name="author" content="{%= author_name %}" />
  7. </head>
  8. <body>
  9. <p>The sample app contains three additional parts beyond Amber itself:</p>
  10. <ul style="width: 40ex">
  11. <li>The elements in <code>index.html</code>
  12. <code>&lt;body&gt;</code> tag.</li>
  13. <li><code>amber-contrib-jquery</code> module,
  14. providing jQuery and a wrapper over it.</li>
  15. <li><code>amber-contrib-web</code> module,
  16. providing <code>Web</code> package
  17. that allows for DOM manipulation
  18. and is inspired by Seaside.</li>
  19. <li><code>domite</code> module,
  20. providing Amber-native DOM wrapper.</li>
  21. <li><code>silk</code> module,
  22. providing <code>Silk</code> package
  23. that allows for DOM manipulation,
  24. is meant as alternative to <code>Web</code>
  25. and is inspired by stream metaphor and mochikit.</li>
  26. </ul>
  27. <p>Additionally, module <code>amber-compat-es2015</code>
  28. is included by default. This polyfills JS Promise for non-modern
  29. browsers / old node.js.</p>
  30. </body>
  31. </html>