cdn.ejs 531 B

1234567891011121314151617181920212223242526272829303132
  1. ---
  2. title: CDN
  3. type: examples
  4. order: 0
  5. permalink: examples/
  6. ---
  7. {% blockquote %}
  8. CDN
  9. {% endblockquote %}
  10. <p>
  11. This example showcases sourcing an UMD dist build straight from a CDN.
  12. </p>
  13. <p>
  14. We're executing the following HTML snippet:
  15. </p>
  16. {% include_code app.html lang:html playground/src/html/app.htmls %}
  17. <% include playground/src/html/app.htmls %>
  18. <p>
  19. We're sourcing the following JS snippet:
  20. </p>
  21. {% include_code app.js lang:js playground/src/js/app.js %}
  22. <script src="playground/static/js/app.js"></script>
  23. <p>
  24. : )
  25. </p>