template.mustache.html 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>{{ title }} - Sandbox iframe</title>
  5. <!-- HTML5 Boilerplate CSS -->
  6. <link rel="stylesheet" href="/css/normalize.css">
  7. <link rel="stylesheet" href="/css/main.css">
  8. <!-- Vendor CSS -->
  9. {{#libsCss}}
  10. <link rel="stylesheet" href="/css/vendor/{{ . }}">
  11. {{/libsCss}}
  12. <!-- Example's CSS -->
  13. {{#css}}
  14. <link rel="stylesheet" href="/{{examplesDir}}/{{ repoSlug }}/{{ slug }}/{{ . }}">
  15. {{/css}}
  16. <style type="text/css" media="screen">
  17. body {
  18. font-family: Arial, Helvetica;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <div class="container">
  24. {{{ body }}}
  25. </div>
  26. <!-- HTML5 Boilerplate JS -->
  27. <script src="/js/vendor/modernizr-3.5.0.min.js"></script>
  28. <script src="/js/plugins.js"></script>
  29. <!-- Vendor JS -->
  30. {{#libsJs}}
  31. <script src="/js/vendor/{{ . }}" ></script>
  32. {{/libsJs}}
  33. <!-- Example's JS -->
  34. {{#js}}
  35. <script src="/{{examplesDir}}/{{ repoSlug }}/{{ slug }}/{{ . }}"></script>
  36. {{/js}}
  37. </body>
  38. </html>