index.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <title>Misago Tests</title>
  7. <meta name="description" content="">
  8. <meta name="viewport" content="width=device-width, initial-scale=1">
  9. {{content-for 'head'}}
  10. {{content-for 'test-head'}}
  11. <link rel="stylesheet" href="assets/vendor.css">
  12. <link rel="stylesheet" href="assets/misago.css">
  13. <link rel="stylesheet" href="assets/test-support.css">
  14. <style>
  15. #ember-testing-container {
  16. position: absolute;
  17. background: white;
  18. bottom: 0;
  19. right: 0;
  20. width: 640px;
  21. height: 384px;
  22. overflow: auto;
  23. z-index: 9999;
  24. border: 1px solid #ccc;
  25. }
  26. #ember-testing {
  27. zoom: 50%;
  28. }
  29. </style>
  30. {{content-for 'head-footer'}}
  31. {{content-for 'test-head-footer'}}
  32. </head>
  33. <body>
  34. {{content-for 'body'}}
  35. {{content-for 'test-body'}}
  36. <script src="assets/vendor.js"></script>
  37. <script src="assets/test-support.js"></script>
  38. <script src="assets/misago.js"></script>
  39. <script src="testem.js"></script>
  40. <script src="assets/test-loader.js"></script>
  41. {{content-for 'body-footer'}}
  42. {{content-for 'test-body-footer'}}
  43. </body>
  44. </html>