index.html 977 B

123456789101112131415161718192021222324252627282930313233
  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="misago/css/vendor.css">
  12. <link rel="stylesheet" href="misago/css/misago.css">
  13. <link rel="stylesheet" href="assets/test-support.css">
  14. {{content-for 'head-footer'}}
  15. {{content-for 'test-head-footer'}}
  16. </head>
  17. <body>
  18. {{content-for 'body'}}
  19. {{content-for 'test-body'}}
  20. <script src="misago/js/vendor.js"></script>
  21. <script src="assets/test-support.js"></script>
  22. <script src="misago/js/misago.js"></script>
  23. <script src="testem.js"></script>
  24. <script src="assets/test-loader.js"></script>
  25. {{content-for 'body-footer'}}
  26. {{content-for 'test-body-footer'}}
  27. </body>
  28. </html>