index.ejs 600 B

1234567891011121314151617181920212223242526272829303132333435
  1. ---
  2. title: Modal
  3. layout: example
  4. type: examples
  5. order: 1
  6. ---
  7. {% blockquote %}
  8. Making a modal dialog great again.
  9. {% endblockquote %}
  10. <link rel="stylesheet" href="app.css">
  11. <% include app.html %>
  12. <script src="app.js"></script>
  13. <hr />
  14. <p id="console-wrapper">
  15. Console output (latest logs are at the top): <br />
  16. </p>
  17. <p>
  18. On this page we're using the following HTML snippet:
  19. </p>
  20. {% include_code lang:html fakemodal/app.html %}
  21. <p>
  22. Along with this JavaScript:
  23. </p>
  24. {% include_code lang:js fakemodal/app.es6 %}
  25. <p>
  26. And the following CSS:
  27. </p>
  28. {% include_code lang:css fakemodal/app.css %}