framework/ember/tests/index.html

50 lines
1.3 KiB
HTML
Raw Normal View History

2014-12-20 14:26:46 +08:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Flarum Tests</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
{{content-for 'head'}}
{{content-for 'test-head'}}
2014-12-20 14:26:46 +08:00
<link rel="stylesheet" href="assets/vendor.css">
<link rel="stylesheet" href="assets/flarum.css">
<link rel="stylesheet" href="assets/test-support.css">
<style>
#ember-testing-container {
position: absolute;
background: white;
bottom: 0;
right: 0;
width: 640px;
height: 384px;
overflow: auto;
z-index: 9999;
border: 1px solid #ccc;
}
#ember-testing {
zoom: 50%;
}
</style>
{{content-for 'head-footer'}}
{{content-for 'test-head-footer'}}
2014-12-20 14:26:46 +08:00
</head>
<body>
{{content-for 'body'}}
{{content-for 'test-body'}}
2014-12-20 14:26:46 +08:00
<script src="assets/vendor.js"></script>
<script src="assets/test-support.js"></script>
2014-12-20 14:26:46 +08:00
<script src="assets/flarum.js"></script>
<script src="testem.js"></script>
<script src="assets/test-loader.js"></script>
{{content-for 'body-footer'}}
{{content-for 'test-body-footer'}}
2014-12-20 14:26:46 +08:00
</body>
</html>